Changes for page 1. Authorization
Last modified by Giorgi Mdivnishvili on 2024/04/26 15:59
From version 30.2
edited by Giorgi Mdivnishvili
on 2024/04/11 15:35
on 2024/04/11 15:35
Change comment:
There is no comment for this version
To version 29.1
edited by Giorgi Mdivnishvili
on 2024/04/11 15:33
on 2024/04/11 15:33
Change comment:
There is no comment for this version
Summary
-
Page properties (1 modified, 0 added, 0 removed)
Details
- Page properties
-
- Content
-
... ... @@ -7,8 +7,11 @@ 7 7 {{toc/}} 8 8 {{/box}} 9 9 10 -= Authorization:Starting Your Integration =10 += Method Description = 11 11 12 + 13 +== Authorization: Starting Your Integration == 14 + 12 12 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. 13 13 14 14 ... ... @@ -42,9 +42,7 @@ 42 42 43 43 {{code language="Json"}} 44 44 { 45 - "accessToken": "string", 46 - "refreshToken": "string", 47 - "passwordExpired": true 48 + "accessToken": "string" 48 48 } 49 49 {{/code}} 50 50 ... ... @@ -58,13 +58,12 @@ 58 58 ))) 59 59 60 60 {{success}} 61 -AuthRe sponse{62 +AuthRequest{ 62 62 63 -| accessToken|string64 +|login|string 64 64 nullable: true 65 -| refreshToken|string66 +|password|string 66 66 nullable: true 67 -|passwordExpired|boolean 68 68 69 69 } 70 70 {{/success}}