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

create-session

POST
{{base_url}}/v1/sessions

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' \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{
  "external_id": "db357b80-8e96-42c4-8b96-2613bd8a37a7",
  "ip_address": "95.214.210.79",
  "additional_params": {
    "lang":"uz",
    "primary_color": "red",
    "redirect_url":"https://proctoring.uz",
    "theme":"light"
  },
  "client_type": "WEB"
//   "user_info": {

//     "id_number": "AB5206456",
//     "birth_date": "01.09.1999"
//   }
}'
Response Response Example
{}
Modified at 2026-08-21 12:27:55
Previous
sign-in
Next
async - identify
Built with