# Get Status Returns the lightweight status of a verification session, suitable for polling. 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) - Plain string status: started or completed. When to use - Use this endpoint to check whether the session has finished without fetching the full result payload. Errors - 400/422: invalid parameter format (see ProblemDetails). - 401/403: authentication/authorization failure. - 404: session not found for the given IDs. Auth - Requires x-api-key with the ApiKeyPolicy. Endpoint: GET /api/v1/verification/{identityVerifierId}/status/{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 400 fields (application/json): - `type` (string,null) - `title` (string,null) - `status` (integer,null) - `detail` (string,null) - `instance` (string,null) ## Response 404 fields (application/json): - `type` (string,null) - `title` (string,null) - `status` (integer,null) - `detail` (string,null) - `instance` (string,null) ## Response 422 fields (application/json): - `type` (string,null) - `title` (string,null) - `status` (integer,null) - `detail` (string,null) - `instance` (string,null) ## Response 401 fields ## Response 403 fields