All identity endpoints require a valid Bearer token in the
Authorization header.Get identity verification status
GET /v2/id_proof
Returns the current identity verification status for the authenticated user, including the uploaded document images if available.
In practice, document image URLs are also returned as part of the
GET /v2/profile response (fields id_proof_front, id_proof_back, passport_img_front, passport_img_back, driving_license_front, driving_license_back). The profile endpoint is used by the Documents screen to pre-populate existing uploads.Response
URL of the front image of the uploaded national ID, or
null if not yet uploaded.URL of the back image of the uploaded national ID, or
null if not yet uploaded.URL of the front image of the uploaded passport, or
null if not yet uploaded.URL of the back image of the uploaded passport, or
null if not yet uploaded.URL of the front image of the uploaded driving licence, or
null if not yet uploaded.URL of the back image of the uploaded driving licence, or
null if not yet uploaded.Upload passport images
POST /v2/passport_image
Uploads front and back images of the user’s passport. Both files must be included in a single multipart/form-data request.
Request body
Image file for the front of the passport. Accepts JPEG, PNG, or common document formats.
Image file for the back of the passport.
Response
A success message confirming the upload.
Upload driving licence images
POST /v2/driving_license_image
Uploads front and back images of the user’s driving licence. Both files must be included in a single multipart/form-data request.
Request body
Image file for the front of the driving licence.
Image file for the back of the driving licence.
Response
A success message confirming the upload.