DEV Community

ImmigrationGPT
ImmigrationGPT

Posted on

UK Spouse Visa 2026: What HR Systems Need to Track for Right-to-Work Compliance

When a candidate mentions they hold a UK spouse visa, most HR platforms treat it the same as any other time-limited leave — record the expiry, add a calendar reminder, move on. That's not wrong, but it misses the compliance distinctions that make spouse visa holders meaningfully different from Skilled Worker visa holders in ways that affect your system design.

Here's a practical breakdown of right-to-work obligations, what to capture in your HR system, and what the 2026 financial threshold changes mean for your compliance workflows.

Right-to-work check for a spouse visa holder

Spouse visa holders (formally: leave to remain under Appendix FM) have unrestricted right to work in the UK. No employer sponsorship required, no Sponsor Management System obligations, no RLMT duty of care.

Two compliant check paths exist:

Manual check (physical BRP or eVisa): Review the Biometric Residence Permit. On the back, confirm the "Work: Unrestricted (no SOGAS)" endorsement. Record the document number and expiry date. From 2025, BRPs are being phased out in favour of eVisas — holders will share their status digitally via the UKVI online service instead.

Online share code check: The worker generates a share code at gov.uk/prove-right-to-work. HR enters the share code plus date of birth at gov.uk/view-right-to-work. The system returns a status page confirming right to work and expiry date. Screenshot it, timestamp it, save to the employee record. This is the legally compliant path going forward as physical documents phase out.

There's no Home Office API for programmatic share code lookups — the integration point for your systems is the expiry date capture, not live status polling.

What to store in your HR system

Field Source Notes
Visa type BRP / eVisa / share code "Spouse/Partner (FLR(M))" or "Leave to Enter as Spouse"
Grant start date BRP / share code Useful for continuous residence tracking
Expiry date BRP / share code Primary compliance trigger
Work restriction BRP / share code Must read "Unrestricted"
Share code check timestamp Your system Required for legal compliance record
Repeat check scheduled Your system 90 days before expiry minimum

The expiry date is the field that drives everything. Initial spouse visa grants run 2.5 years. The FLR(M) extension adds another 2.5. After five years total continuous residence, the holder can apply for ILR — at which point right to work becomes permanent and no periodic re-check is required.

Expiry monitoring — implementation pattern

from datetime import date, timedelta
from typing import Optional

def days_until_expiry(expiry_date: date) -> int:
    return (expiry_date - date.today()).days

def schedule_rtw_review(employee_id: str, expiry_date: date) -> Optional[str]:
    """
    Returns alert level or None if no action needed.
    FLR(M) standard processing: ~8 weeks. Priority: 5 working days.
    Build review window around that buffer.
    """
    days_left = days_until_expiry(expiry_date)

    if days_left < 0:
        return "EXPIRED"  # Immediate action -- check Section 3C leave status
    elif days_left <= 30:
        return "CRITICAL"  # Application should already be submitted
    elif days_left <= 90:
        return "ACTION_REQUIRED"  # Standard processing window
    elif days_left <= 180:
        return "UPCOMING"  # Soft warning, begin document gathering
    return None
Enter fullscreen mode Exit fullscreen mode

Section 3C leave is the critical edge case here: if an employee submits their FLR(M) application before their current leave expires, Section 3C automatically extends their previous leave conditions while the application is pending. This means the right to work continues -- but only if the application was submitted in time. A late application breaks the Section 3C chain and creates a gap in lawful status.

Your system should distinguish between:

  • Leave expiry (the visa date)
  • Application submitted date (does Section 3C apply?)
  • Decision date (when new leave starts)

What changes in 2026

The headline 2026 change is not directly about work rights -- it's the financial threshold for the sponsoring UK partner who brought the spouse to the UK. That threshold is rising toward the 25th percentile of UK earnings (broadly GBP 29,000 to GBP 38,700 range).

This matters to HR in one specific scenario: if an employee holding a spouse visa has a partner whose income has dropped significantly since the original application, their FLR(M) extension could face difficulties. The employee's current leave is still valid -- but their future UK status is less certain.

Not your legal responsibility as an employer, but a useful flag if you're running proactive right-to-work compliance reviews for employees approaching extension windows.

Checking sponsor register for adjacent use cases

If you're hiring under a Skilled Worker sponsor licence and want to verify a candidate's employment history against the register of licensed UK sponsors, immigrationgpt.co.uk provides a searchable real-time view of the published register. Useful for background verification and compliance audit trails when candidates cite previous sponsored employment.

Three mistakes HR systems make

Recording BRP expiry as employment eligibility end date. These are different things. The right-to-work check must be re-run before the BRP expires -- but Section 3C can extend work rights if the extension application is in-flight. Mark the BRP expiry as "review trigger," not "termination date."

Skipping the ILR status update. Once an employee gets ILR, re-run the share code check, update your records to reflect permanent status, and cancel future expiry reminders. Some HR systems keep flagging ILR holders for annual re-checks out of habit -- this creates unnecessary overhead and document requests.

Treating eVisa and BRP checks as interchangeable without updating your SOP. From 2025 onward, physical BRPs are being replaced. Your right-to-work standard operating procedure needs to account for the eVisa/share code path as the primary check method, not a fallback.


This article is for informational purposes only and does not constitute legal or immigration advice. UK immigration rules are subject to change. Consult a qualified immigration solicitor or OISC-regulated adviser for specific guidance.

Top comments (0)