### Key Capabilities
- **Start Verification** (`POST /api/v1/verification`): Create a new verification session for a user, specifying the IdRamp Identity Verifier configuration to use. Returns a session identifier and a provider URL where the verification flow begins.
- **Get Verification Status** (`GET /api/v1/verification/{identityVerifierId}/status/{verificationId}`): Retrieve the current state of a verification session (`started`, `completed`). Useful for polling the session progress without fetching detailed results.
- **Get Verification Result** (`GET /api/v1/verification/{identityVerifierId}/{verificationId}`): Fetch the full verification outcome once a session completes, including status (`success`, `fail`, `canceled`), provider user ID, and verified user traits such as name, email, phone, and document information.
- **Match Utility** (`POST /api/v1/verification/match`): Evaluate custom rules to compare and match data across two records (e.g., source vs. target). Supports logical and fuzzy matching (e.g., equality, Levenshtein ratio) with detailed per-rule results.

