1. web-sdk
RSID
  • web-sdk
    • Usage guide
    • sign-in
      POST
    • create-session
      POST
    • async - identify
      POST
    • user
      GET
    • poll-status
      GET
  • mobile-sdk
  • backend-with-info
  • backend-without-info
  • qr-sign
  1. web-sdk

async - identify

POST
{{base_url}}/v1/sessions/async/identify

Request

Authorization
Provide your bearer token in the
Authorization
header when making requests to protected resources.
Example:
Authorization: Bearer ********************
Body Params application/json

Examples

Responses

🟢200
application/json
Bodyapplication/json

Request Request Example
Shell
JavaScript
Java
Swift
curl --location --globoff '{{base_url}}/v1/sessions/async/identify' \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{
    "session_id": "string",
    "photos": [
        {
            "sort_order": 0,
            "photo_base64": "string"
        }
    ],
    "user_info": {
        "id_number": "string",
        "birth_date": "string"
    }
}'
Response Response Example
{}
Modified at 2026-08-21 12:27:55
Previous
create-session
Next
user
Built with