When a visa application ends in refusal, the question isn't always "should we appeal?" — it's "are we even in a system that has appeals?" For HR teams managing sponsored workers and developers building immigration compliance tools, understanding the architecture of the UK's post-refusal framework is essential. This isn't academic — getting it wrong has real civil penalty consequences.
Two Separate Post-Refusal Tracks
The UK doesn't have a single appeals system for all visa types. There are two structurally distinct tracks:
1. Administrative Review (AR)
Applies to most work and study visas: Skilled Worker, Student, Intra-Company Transfer, Graduate, and others under the points-based system. An AR is an internal Home Office check for caseworking errors — not a merits appeal. It will not re-weigh evidence or fix a genuinely deficient application.
Key parameters:
- Fee: £80
- Deadline: 28 days (in-UK) / 14 days (out-of-UK, for applicable routes)
- Scope: Procedural and legal errors only — not "the decision was wrong"
- Submission: Online via UKVI portal (no physical form)
- Outcome timeline: Typically 28 days, but varies
2. Right of Appeal (First-tier Tribunal)
Applies to: protection claims (asylum/humanitarian), human rights grounds (ECHR Article 8 — right to private and family life), and some family route refusals.
Key parameters:
- Forms: IAFT-1 (in-country), IAFT-2 (out-of-country)
- Deadline: 14 days from refusal (5 days for detained persons)
- Venue: First-tier Tribunal (Immigration and Asylum Chamber)
- Hearing timeline: 6–18+ months from lodgement in 2026
- Further appeal: Upper Tribunal → Court of Appeal → Supreme Court (on points of law only)
What HR Compliance Systems Need to Model
If you're building HR tooling that tracks sponsored workers or manages right-to-work compliance, here's the data model you need:
interface WorkerImmigrationStatus {
current_leave_type: string; // e.g. "Skilled Worker"
leave_expires: Date;
refusal_date: Date | null;
ar_deadline: Date | null; // refusal_date + 28d (in-UK) or +14d (out-of-UK)
appeal_type: "AR" | "Tribunal" | null;
appeal_lodged: boolean;
tribunal_hearing_date: Date | null;
section_3c_leave_active: boolean; // extends right to work pending outcome
right_to_work_valid: boolean;
sponsorship_active: boolean;
}
The section_3c_leave_active flag is the one that catches HR teams out most often.
Section 3C Leave: The Critical Edge Case
Section 3C of the Immigration Act 1971 automatically extends a worker's existing leave if:
- They were in the UK with valid leave when the application was made
- The leave expired before a decision was made (or the decision was a refusal)
- An AR or appeal was lodged within the required deadline
Effect: The worker can remain in the UK legally and, in most cases, continue working under their previous conditions — even after the refusal.
Risk: Section 3C protection expires the moment:
- The AR/appeal deadline passes without being lodged
- The AR is determined and not further challenged (no 3C extension on a second AR)
- The appeal is finally dismissed
This is where automated systems fail. A worker's status may show "application pending" in UKVI records, but that tells you nothing about whether 3C is active or expired. Build a human review trigger for any status showing pending.
Sponsor Licence Obligations During Post-Refusal Period
Sponsors have ongoing SMS (Sponsor Management System) reporting duties even during AR/appeal proceedings:
| Event | Reporting Deadline |
|---|---|
| Worker's visa refused | No immediate duty, but monitor 3C status |
| Worker stops being sponsored | 10 working days |
| Worker's leave expires with no valid 3C | Must cease sponsoring immediately |
| Address or activity change | 20 working days |
Failure to report correctly during post-refusal proceedings is one of the most common triggers for UKVI compliance visits. The consequences range from an A-rated licence downgrade to full revocation.
Civil penalty exposure for illegal working: Up to £60,000 per worker under the 2024 rate. This applies if you continue employing someone whose right to work has actually ended, regardless of whether you believed 3C was still active.
Upper Tribunal Case Law as Structured Data
For teams building legal reference tools or immigration knowledge bases: the Upper Tribunal (Immigration and Asylum Chamber) publishes fully searchable determinations at https://tribunalsdecisions.service.gov.uk.
Upper Tribunal decisions carry precedential weight — First-tier decisions do not. When building rule-matching systems, UT precedents are the cases that matter for edge-case logic.
Key distinction: the UT only hears appeals on points of law. It's not a factual re-examination. This means if you're building a classifier to tag whether a case is likely to proceed to UT, look for questions of legal principle (statutory interpretation, proportionality assessments), not factual disputes.
UKVI Status Check Integration
The UKVI online status check at https://www.gov.uk/check-immigration-status allows employers to verify right-to-work status directly. For automated workflows:
- Status during pending appeal often shows as "leave extended under Section 3C"
- This is a human verification prompt — don't auto-resolve it
- BRP/eVisa records may lag AR outcomes by several days
- eVisa updates post-AR/appeal may require the worker to manually refresh their UKVI account
If you're using the employer checking service for right-to-work verification, a "satisfactory" result during an active appeal is valid evidence of the right to work for statutory excuse purposes — but only if the check is documented at the time.
Build on Accurate UK Immigration Data
For development teams working on UK immigration compliance tooling or HR systems that need current visa rules and sponsor data, ImmigrationGPT offers a free RAG-based interface over UK immigration policy documents, plus a searchable database of 125,000+ licenced UK sponsors — useful for validating sponsor eligibility before building it into a workflow.
This post is for general informational purposes only. UK immigration law changes frequently. Always verify against current UKVI guidance and consult a qualified immigration solicitor for case-specific advice.
Top comments (0)