# Get Result Retrieves the verification outcome and captured traits for a completed session. Path parameters - identityVerifierId (UUID): IdRamp Identity Verifier instance ID used to start the session. - verificationId (string): The session ID returned by the start call. Successful response (200) - Returns VerificationResultDto, including: - status: one of success, fail, or canceled. - user_id: the provider’s unique user identifier (if available). - email, phone: top-level contact values, when present. - traits: structured attributes (e.g., first_name, last_name, nested document). Notes - Call after status indicates completion to obtain final details. - Field presence varies by provider and configuration. Errors - 401/403: authentication/authorization failure. - 422: parameter formatting or validation error (see ErrorResponse). Auth - Requires x-api-key with the ApiKeyPolicy. Endpoint: GET /api/v1/verification/{identityVerifierId}/{verificationId} Version: 1.0 Security: ApiKey ## Path parameters: - `identityVerifierId` (string, required) IdRamp Identity Verifier instance id - `verificationId` (string, required) The Id of the verification session obtained at start of session ## Response 200 fields (application/json): - `email` (string,null) - `phone` (string,null) - `user_id` (string,null) Unique identifier of the user from associated IdV provider - `status` (string,null) The statuses the verification can be in. success, fail,canceled - `traits` (object) - `traits.first_name` (string,null) - `traits.last_name` (string,null) - `traits.document` (object) ## Response 422 fields (application/json): - `status` (integer) - `message` (string,null) - `errorCode` (string,null) - `details` (string,null) - `timestamp` (string) - `diagnosticsId` (string,null) ## Response 401 fields ## Response 403 fields