1. Authorization
Version 32.1 by Giorgi Mdivnishvili on 2024/04/16 18:43
Contents
Authorization: Starting Your Integration
The first step in integrating with our API is the authorization process. As a developer, you'll be assigned a unique username and password. These credentials are essential for generating the access token, a critical component that must be included in the headers of all subsequent API requests. This token validates your requests and grants you access to the full suite of our services.
Request URL - [POST]
Request Parameters
none
Request Body
{
"login": "string",
"password": "string"
}
"login": "string",
"password": "string"
}
Response Body
{
"accessToken": "string",
"refreshToken": "string",
"passwordExpired": true
}
"accessToken": "string",
"refreshToken": "string",
"passwordExpired": true
}
expiration time 30 days for both tokens:
accessToken - 43200 min
refreshToken - 2591968 sec
Schema