DEV Community

Work Sponsors
Work Sponsors

Posted on

ILR in the UK: A Technical Guide for HR Teams and Immigration Tech Builders

If you work in HR at a UK company, or you're building tools for the UK immigration space, understanding Indefinite Leave to Remain (ILR) is essential. It affects right-to-work checks, employee retention planning, and the broader lifecycle of sponsored workers.

What ILR Actually Is

Indefinite Leave to Remain is the UK's permanent residency status. A person with ILR can live and work in the UK without any time-limited immigration permission. From an HR perspective, this changes everything: an employee with ILR no longer needs to be sponsored by your organisation, and right-to-work checks shift from repeated share codes to a one-time settled status confirmation.

For developers building HR systems or immigration platforms: ILR status is represented via the eVisa system. Share codes for ILR holders show "no time limit" on their right to work.

Eligibility Logic by Route

ILR eligibility varies by visa category:

  • Skilled Worker: 5 years, continuous sponsorship, salary thresholds met throughout
  • Global Talent: 3 or 5 years depending on endorsing body
  • Family (Spouse/Partner): 5 years, cohabitation throughout
  • Long Residence: 10 years of any lawful combination of leave
  • Refugee/Humanitarian Protection: 5 years, no serious criminal convictions

The 180-Day Absence Rule

The most common ILR failure mode is the continuous residence test: no more than 180 days outside the UK in any rolling 12-month period during the qualifying window.

For developers building eligibility checkers, this requires a sliding window approach — the Home Office checks every possible 12-month window, not just calendar years. Off-by-one errors here are common and consequential. Edge cases like exceptional circumstance absences (bereavement, medical treatment abroad) may be excused with supporting documentation.

Right-to-Work Implications

Under UK law, employers must conduct right-to-work checks before employment begins and re-check when time-limited leave expires. ILR removes the re-check requirement.

When building self-service RTW tools or integrating with the Home Office's Employer Checking Service:

  • ILR holders should surface a "no expiry" flag
  • Systems must handle the transition from time-limited to indefinite status gracefully
  • Expiry-date alerts must exclude ILR holders to avoid false positives

The Salary Threshold Problem

For Skilled Worker visa holders, salary must have met the relevant threshold throughout the entire qualifying period — not just at application. This became more complex after the 2024 reforms.

Practically for HR data systems:

  • Log salary against sponsorship periods, not just current salary
  • A pay dip below threshold at any historical point can invalidate an ILR application
  • Build salary compliance tracking as a time-series problem, not a point-in-time check

Common Pitfalls in Eligibility Logic

  1. Ignoring visa category transitions — Student to Skilled Worker switches mid-qualifying period are allowed in some combinations but not others
  2. Hardcoding fee amounts — current fee is £2,885 for most routes, but build from config not hardcoded values
  3. Missing the Long Residence route — 10 years of mixed legal leave qualifies under a separate logic path
  4. Absence counting edge cases — departure and arrival day treatment varies by route; always test against current UKVI guidance

Tools for HR Teams

For HR teams wanting to track employee ILR milestone dates and flag potential issues before they become problems, tools like ImmigrationGPT can surface eligibility timelines without requiring manual parsing of UKVI policy documentation.

For developers building immigration logic from scratch, the UKVI policy guidance library is the definitive source — but it requires significant interpretation and QA to implement correctly.

Summary

ILR is a foundational concept for anyone working in UK HR compliance or building immigration tech. Understanding the eligibility logic, absence rules, and right-to-work implications is essential groundwork.

Disclaimer: For informational purposes only. Not legal advice. Always refer to the latest UKVI guidance or consult a qualified immigration adviser.

Top comments (0)