Wiki source code of Authorization

Version 3.2 by Giorgi Mdivnishvili on 2023/12/14 06:52

Show last authors
1 {{box cssClass="floatinginfobox" title="**Contents**"}}
2 {{toc/}}
3 {{/box}}
4
5 = Method Description =
6
7 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.
8
9 == Request URL - [GET] ==
10
11 {{{https://online-api.kazunion.com/api/Auth/Auth}}}
12
13 == Request Parameters ==
14
15 none
16
17 == Request Body ==
18
19 {{code language="Json"}}
20 {
21 "login": "string",
22 "password": "string"
23 }
24 {{/code}}
25
26 == Response Body ==
27
28 {{code language="Json"}}
29 {
30 "accessToken": "string"
31 }
32 {{/code}}
33
34 === Schema ===
35
36 {{code language="none"}}
37 AuthResponse{
38 accessToken string
39 nullable: true
40 }
41 {{/code}}