-
Notifications
You must be signed in to change notification settings - Fork 0
/
swagger.yaml
299 lines (298 loc) · 9.03 KB
/
swagger.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
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
openapi: 3.0.3
info:
title: Open Customer Data Api
description: Open Customer Data Api
version: 1.2.0
license:
name: Apache 2.0
url: 'https://www.apache.org/licenses/LICENSE-2.0'
servers:
- url: 'localhost:8080/test-api'
description: Development server
tags:
- name: Consents
description: Operation to create and get consents
- name: Accounts
description: Operation to get Account information
paths:
'/consents/v1/consents':
post:
tags:
- Consents
summary: Create a consent
description: Create a consent
operationId: postConsent
parameters:
- $ref: '#/components/parameters/Authorization'
requestBody:
content:
application/json:
schema:
$ref: '#/components/schemas/CreateConsent'
description: Payload to create a consent.
required: true
responses:
'200':
$ref: '#/components/responses/OkConsent'
'403':
description: 403 response
'500':
description: 500 response
'/consents/v1/consents/{consentId}':
put:
tags:
- Consents
summary: Update a consent
description: Update a consent
operationId: putConsent
parameters:
- $ref: '#/components/parameters/Authorization'
- $ref: '#/components/parameters/ConsentId'
requestBody:
content:
application/json:
schema:
$ref: '#/components/schemas/UpdateConsent'
description: Payload to update consent status
required: true
responses:
'200':
$ref: '#/components/responses/OkConsent'
'403':
description: 403 response
'404':
description: 404 response
'500':
description: 500 response
get:
tags:
- Consents
summary: Get consent
description: Get consent
operationId: getConsent
parameters:
- $ref: '#/components/parameters/Authorization'
- $ref: '#/components/parameters/ConsentId'
responses:
'200':
$ref: '#/components/responses/OkConsent'
'403':
description: 403 response
'404':
description: 404 response
'500':
description: 500 response
'/accounts/v1/accounts':
get:
tags:
- Accounts
summary: List accounts
description: List accounts
operationId: listAccounts
parameters:
- $ref: '#/components/parameters/Authorization'
responses:
'200':
$ref: '#/components/responses/OkListAccounts'
'403':
description: 403 response
'500':
description: 500 response
'/accounts/v1/accounts/{accountId}':
get:
tags:
- Accounts
summary: Get accounts information
description: Get accounts information
operationId: getAccounts
parameters:
- $ref: '#/components/parameters/Authorization'
- $ref: '#/components/parameters/AccountId'
responses:
'200':
$ref: '#/components/responses/OkAccounts'
'403':
description: 403 response
'404':
description: 404 response
'500':
description: 500 response
components:
parameters:
Authorization:
name: Authorization
in: header
description: |
Cabeçalho HTTP padrão. Permite que as credenciais sejam fornecidas dependendo do tipo de recurso solicitado
required: true
schema:
type: string
pattern: '[\w\W\s]*'
maxLength: 2048
ConsentId:
name: consentId
in: path
description: Cabeçalho HTTP padrão. Permite que as credenciais sejam fornecidas dependendo do tipo de recurso solicitado
required: true
schema:
type: string
pattern: '[\w\W\s]*'
maxLength: 2048
AccountId:
name: accountId
in: path
description: Cabeçalho HTTP padrão. Permite que as credenciais sejam fornecidas dependendo do tipo de recurso solicitado
required: true
schema:
type: string
pattern: '[\w\W\s]*'
maxLength: 2048
schemas:
CreateConsent:
type: object
required:
- data
properties:
data:
$ref: '#/components/schemas/CreateConsentData'
CreateConsentData:
type: object
description: Utilizado para informar para qual estado deve ir o pagamento. Atualmente o único valor possível é CANC.
required:
- permissions
- expirationDateTime
properties:
permissions:
type: string
enum:
- ACCOUNTS_READ
- CREDIT_CARD_READ
description: |
This is the permission code to associate the consent to call the customer api.
possible values:
- ACCOUNTS_READ - To get account information
- CREDIT_CARD_READ - To get credit-card information
expirationDateTime:
maxLength: 20
type: string
description: Expiration date time of the consent
format: date-time
UpdateConsent:
type: object
required:
- data
properties:
data:
$ref: '#/components/schemas/UpdateConsentData'
UpdateConsentData:
type: object
description: Utilizado para informar para qual estado deve ir o pagamento. Atualmente o único valor possível é CANC.
required:
- status
properties:
status:
type: string
enum:
- AWAITING_AUTHORISATION
- AUTHORISED
- REJECTED
description: |
O preenchimento desse campo para retorno, deve ocorrer pela detentora de contas a partir do status em que o pagamento estiver no momento da solicitação do cancelamento (ex. Status de pagamento = PDNG, campo deve ser preenchido com enum CANCELADO_PENDENCIA)
Valores possíveis:
- AWAITING_AUTHORISATION - Pagamento cancelado enquanto estava na situação PDNG
- AUTHORISED - Pagamento cancelado enquanto estava na situação SCHD
- REJECTED - Pagamento cancelado enquanto estava na situação SCHD
ResponseConsent:
type: object
properties:
data:
$ref: '#/components/schemas/ResponseConsentData'
ResponseConsentData:
type: object
description: Response contain all the consent information
properties:
consentId:
maxLength: 200
type: string
description: Consent ID generated by the API
example: urn:bank:xxxxxxxxxxxxx
clientId:
maxLength: 200
type: string
description: Client Id used to create the consent
permissions:
type: string
enum:
- ACCOUNTS_READ
- CREDIT_CARD_READ
description: |
This is the permission code to associate the consent to call the customer api.
possible values:
- ACCOUNTS_READ - To get account information
- CREDIT_CARD_READ - To get credit-card information
expirationDateTime:
maxLength: 20
type: string
description: Expiration date time of the consent
format: date-time
creationDateTime:
maxLength: 20
type: string
description: Creation date time of the consent
format: date-time
statusUpdateDateTime:
maxLength: 20
type: string
description: Status update date time of the consent
format: date-time
ResponseAccount:
type: object
required:
- data
properties:
data:
$ref: '#/components/schemas/ResponseAccountData'
ResponseListAccount:
type: object
properties:
data:
type: array
items:
$ref: '#/components/schemas/ResponseAccountData'
ResponseAccountData:
type: object
description: Utilizado para informar para qual estado deve ir o pagamento. Atualmente o único valor possível é CANC.
properties:
id:
type: string
description: Status update date time of the consent
bank:
type: string
description: Status update date time of the consent
accountNumber:
type: string
description: Status update date time of the consent
creationDateTime:
maxLength: 20
type: string
description: Expiration date time of the consent
format: date-time
responses:
OkConsent:
description: Response for consent
content:
application/json:
schema:
$ref: '#/components/schemas/ResponseConsent'
OkListAccounts:
description: Response for list of accounts
content:
application/json:
schema:
$ref: '#/components/schemas/ResponseListAccount'
OkAccounts:
description: Response for Accounts
content:
application/json:
schema:
$ref: '#/components/schemas/ResponseAccount'