Authorization
Version 10.1 by Giorgi Mdivnishvili on 2023/12/14 07:49
Method Description
The initial method of the integration process is authorization. You will be provided with a test user username and password to generate the access token that you will need to pass in all the following methods.
Request URL - [GET]
Request Parameters
none
Request Body
{
"login": "string",
"password": "string"
}
"login": "string",
"password": "string"
}
Response Body
{
"accessToken": "string"
}
"accessToken": "string"
}
Schema
AuthResponse{
accessToken string
nullable: true
}
accessToken string
nullable: true
}