-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathauth.yaml
162 lines (162 loc) · 3.83 KB
/
auth.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
openapi: 3.0.1
info:
title: .WebAPI
version: "1.0"
servers:
- url: https://sandbox.solutra.com.br/Solutra/Auth/
paths:
/auth/login:
post:
tags:
- Auth
requestBody:
content:
application/json:
schema:
$ref: "#/components/schemas/LoginQuery"
text/json:
schema:
$ref: "#/components/schemas/LoginQuery"
application/*+json:
schema:
$ref: "#/components/schemas/LoginQuery"
responses:
"200":
description: Success
content:
application/json:
schema:
$ref: "#/components/schemas/LoginQueryResponse"
"400":
description: Bad Request
content:
application/json:
schema:
$ref: "#/components/schemas/ValidationProblemDetails"
"403":
description: Forbidden
content:
application/json:
schema:
$ref: "#/components/schemas/ProblemDetails"
/auth/refreshtoken:
post:
tags:
- Auth
requestBody:
content:
application/json:
schema:
$ref: "#/components/schemas/RefreshTokenQuery"
responses:
"200":
description: Success
content:
application/json:
schema:
$ref: "#/components/schemas/RefreshTokenQueryResponse"
"403":
description: Forbidden
content:
application/json:
schema:
$ref: "#/components/schemas/ProblemDetails"
components:
schemas:
LoginQuery:
type: object
properties:
email:
type: string
nullable: true
password:
type: string
nullable: true
additionalProperties: false
LoginQueryResponse:
type: object
properties:
token:
type: string
nullable: true
tokenExpiration:
type: string
format: date-time
refreshToken:
type: string
nullable: true
refreshTokenExpiration:
type: string
format: date-time
additionalProperties: false
ProblemDetails:
type: object
properties:
type:
type: string
nullable: true
title:
type: string
nullable: true
status:
type: integer
format: int32
nullable: true
detail:
type: string
nullable: true
instance:
type: string
nullable: true
additionalProperties: {}
RefreshTokenQuery:
type: object
properties:
refreshToken:
type: string
nullable: true
additionalProperties: false
RefreshTokenQueryResponse:
type: object
properties:
token:
type: string
nullable: true
tokenExpiration:
type: string
format: date-time
refreshToken:
type: string
nullable: true
refreshTokenExpiration:
type: string
format: date-time
additionalProperties: false
ValidationProblemDetails:
type: object
properties:
type:
type: string
nullable: true
title:
type: string
nullable: true
status:
type: integer
format: int32
nullable: true
detail:
type: string
nullable: true
instance:
type: string
nullable: true
errors:
type: object
additionalProperties:
type: array
items:
type: string
nullable: true
readOnly: true
additionalProperties: {}