When a UK visa application is refused, the downstream effects ripple across HR systems, onboarding pipelines, and compliance records. Understanding the appeals and review mechanisms — and how long each takes — is essential for any team managing sponsored workers or international hires.
This post maps out the four post-refusal routes available in 2026 and highlights the data points your systems need to track.
The Four Routes After a UK Visa Refusal
1. Administrative Review
Administrative review (AR) is available for most Points-Based System refusals: Skilled Worker, Student, Graduate, and most other PBS routes. It is not a full merits appeal — it asks only whether the decision-maker applied the rules correctly.
Key parameters for compliance tracking:
- Deadline: 28 days (in-country) / 14 days (out-of-country) from refusal date
- Processing target: 28 days (real-world timelines often 6-10 weeks)
- Fee: £80
- Outcome: Original decision upheld, or remitted for a fresh decision
- Appeal rights after AR failure: None via this route; reapplication is the next step
If your HR system records application dates and outcomes, you should add an ar_deadline field calculated from the refusal_date field. Missing the window permanently forecloses this option.
2. First-tier Tribunal (Immigration and Asylum Chamber)
Full tribunal appeal rights apply primarily to:
- Family and partner visa refusals
- Decisions engaging Article 8 (right to family/private life)
- Protection and asylum claims
- Decisions involving EEA rights (limited, post-Brexit)
Work visas — including Skilled Worker — generally do not carry full appeal rights unless the refusal also engages human rights grounds.
Key parameters:
- Deadline: Specified in the refusal notice (typically 14-28 days)
- Processing: Currently 12-24 months for a listed hearing in many regions (2026 backlog)
- Fee: £140 (oral hearing) or £80 (paper determination)
- In-country vs. out-of-country: Determines whether the individual can remain in the UK during the appeal
- Section 3C leave: Applies automatically if the person was in the UK with valid leave when the decision was made and appeals in time — they retain a form of leave pending outcome
For HR and compliance systems, the critical flag here is section 3C leave status. A worker whose visa has nominally expired but who is appealing in-time may still have the right to work. Failing to check this — and incorrectly terminating employment or access — creates both legal and reputational risk.
3. Reapplication
For most refusals on standard eligibility grounds (missing documents, salary shortfall, COS issues), immediate reapplication is permitted. There is no mandatory cooling-off period for most visa categories.
Exceptions that your systems must flag:
- Refusals citing deception or misrepresentation under paragraph 9.7 of the Immigration Rules: mandatory 10-year re-entry ban
- Refusals on V3.7 grounds (previous breach, overstaying): typically 1-5 year bars depending on severity
- Administrative removal orders: 10-year bar
If your data model stores refusal reasons as a simple pass/fail, you're missing the structured reason codes that determine reapplication eligibility. Parse the refusal notice for the specific paragraph cited.
4. Judicial Review
Judicial review (JR) sits outside the normal appeals architecture and applies where:
- There is no statutory right of appeal
- The decision is alleged to be unlawful on public law grounds (illegality, irrationality, procedural unfairness)
JR is slow (12-24 months), expensive (legal costs run to thousands), and has a low success rate. It rarely features in HR compliance workflows but matters for edge cases: a Tier 1 Investor or Global Talent refusal where no other route exists, or a sponsor licence revocation where the grounds are arguably flawed.
Compliance System Design Implications
For teams building or maintaining HR compliance tools that track UK immigration status:
Fields to capture at refusal:
refusal_date
refusal_paragraph_cited[] # array — multiple grounds common
has_appeal_right: boolean
appeal_route: enum [AR, Tribunal, None, Judicial_Review]
appeal_deadline: date
ar_deadline: date
ban_end_date: date | null
section_3c_leave_active: boolean
Alerting logic:
- T-7 days before appeal deadline: escalation alert
- Section 3C leave active: RTW check flag must reflect pending appeal status
- Deception/misrepresentation flag: block any future sponsorship action until ban_end_date
Integration point: The Home Office Employer Checking Service (ECS) will confirm section 3C leave status and issue a Positive Verification Notice (PVN) when applicable — your right-to-work workflow should trigger an ECS check whenever a refusal or expiry event fires and an appeal is logged.
Timelines Summary (2026)
| Route | Deadline to Lodge | Decision Timeline |
|---|---|---|
| Administrative Review (in-country) | 28 days from refusal | 6-10 weeks typical |
| Administrative Review (out-of-country) | 14 days from refusal | 6-10 weeks typical |
| First-tier Tribunal | Per refusal notice | 12-24 months |
| Judicial Review (permission stage) | 3 months from decision | 3-6 months |
| Reapplication (standard) | No restriction | Standard processing |
Wrapping Up
The UK visa appeals framework is route-specific, deadline-driven, and has meaningful consequences for right-to-work compliance. For HR and compliance systems, the key is capturing structured refusal data — not just a binary refused/approved field — so that downstream workflows (RTW checks, appeal deadlines, reapplication eligibility) can be automated correctly.
For teams that need to quickly look up which rules apply to a given refusal scenario, ImmigrationGPT provides a RAG-based Q&A interface over UK immigration policy documents that can surface the relevant rule paragraphs in seconds.
This post is for informational purposes and does not constitute legal advice. Always consult a qualified immigration solicitor for case-specific guidance.
Top comments (0)