> ## Documentation Index
> Fetch the complete documentation index at: https://docs.encoreos.io/llms.txt
> Use this file to discover all available pages before exploring further.

# Dependent Verification

> Admin queue for verifying or rejecting dependent documentation submitted by employees.

The Dependent Verification page is an admin queue for reviewing and acting on pending dependent verification requests. It is available at route `/hr/benefits/dependents/verification`.

## Overview

The page fetches pending dependent verifications from `usePendingDependentVerifications`. Each row shows: dependent name, relationship, date of birth, last four digits of SSN (if present), employee name, employee number, whether a document has been uploaded, and the creation date. A dropdown menu per row offers **View**, **Approve**, and **Reject** actions. Approving or rejecting opens a dialog prompting for optional verification notes; the action is submitted via `verifyDependent` from `useBenefitDependentMutation`.

## Who it's for

Requires permission `hr.benefits.admin`.

## Before you start

* Employees must have submitted dependent verification requests with uploaded documentation.
* Review your organization's documentation requirements before approving or rejecting.

## Steps

<Steps>
  <Step title="Open Dependent Verification">
    Navigate to **HR → Benefits → Dependents → Verification** or go to `/hr/benefits/dependents/verification`.
  </Step>

  <Step title="Review the queue">
    The table lists all pending verification requests with dependent and employee details.
  </Step>

  <Step title="View documentation">
    Use the **View** action to inspect the uploaded documentation before deciding.
  </Step>

  <Step title="Approve or Reject">
    Use the **Approve** or **Reject** action from the row dropdown. A dialog prompts for optional verification notes. Confirm to submit.
  </Step>
</Steps>

## Key concepts

* **Relationship types** — `spouse`, `child`, `domestic_partner`, `parent`. Display labels are mapped in the `RELATIONSHIP_LABELS` constant.
* **SSN last four** — The `ssn_last_four` field is shown as an identifier; SME should confirm data privacy requirements for this field.

## Related

<Columns cols={2}>
  <Card title="Human Resources" icon="users" href="/hr/overview">
    Human Resources core overview.
  </Card>

  <Card title="Governance & parity" icon="scale-balanced" href="/governance/index" />
</Columns>

<Note>
  This page documents shipped product behavior. It is not medical, legal, or
  billing advice. Verify against your organization's policies and applicable
  regulations before using it for clinical, compliance, or billing decisions.
  Protected health information (PHI) shown in the product is governed by your
  tenant's access controls and is never exposed in this documentation.
</Note>

<Accordion title="Documentation sources">
  * src/routes/hr/benefits-routes.tsx
  * src/cores/hr/benefits/pages/admin/DependentVerificationPage.tsx
  * src/cores/hr/benefits/hooks/usePendingDependentVerifications.ts
</Accordion>
