Peleza β€” Trust built on data
Biometric Verification
On this page

Start Verification Session

Exchange an invitation token for a short-lived session access token so the applicant can begin the biometric capture flow. This endpoint is called from the public verification page (no Bearer token).

Request

POST/api/v1/biometric/verify/{token}/start
{{baseUrl}}/api/v1/biometric/verify/{token}/start
HeaderTypeDescription
Content-Typestringapplication/json
Acceptstringapplication/json

Response

200 OKSample dataExample response
{
  "success": true,
  "response_code": 200,
  "message": "Access token generated",
  "data": {
    "access_token": "session_access_token..."
  },
  "request_id": "550e8400-e29b-41d4-a716-446655440000"
}

Response Fields

FieldTypeDescription
successbooleanWhether the request succeeded
response_codenumberApplication response code (typically mirrors HTTP)
messagestringHuman-readable status message
dataobjectPayload for the verified resource
request_idstringUUID for support and audit trails

Set {{baseUrl}} to https://api.peleza.com (production) or https://sandbox.peleza.com (sandbox). Authenticated calls need a Bearer token from POST /api/v1/oauth/token.