-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathswagger-phase2.yaml
217 lines (209 loc) · 5.23 KB
/
swagger-phase2.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
swagger: '2.0'
info:
title: Bank Argent API documentation for transactions
description: Contains all available API endpoints in this codebase
version: '1.0.0'
termsOfService: 'http://swagger.io/terms/'
host: localhost:3001
basePath: /api/v1
schemes:
- http
paths:
/transactions/{userId}/{accountId}:
get:
tags:
- Transaction Module
summary: Find user's transactions by user id
description: Return transactions for one user
security:
- Bearer: []
parameters:
- in: header
name: Authorization
description: Attach Bearer JWT token
required: true
- in: path
name: userId
description: ID of user to return transactions
required: true
schema:
type:string
# $ref: '#/definitions/Transactions'
produces:
- application/json
responses:
'200':
description: Fetch transaction Successfully
schema:
properties:
status:
type: integer
example: 200
data:
$ref: '#/definitions/Transactions'
'404':
description: Transactions not found
'500':
description: Internal Server Error
/transactions/{transactionId}:
get:
tags:
- Transaction Module
summary: Find transaction by id
description: Return one transaction
security:
- Bearer: []
parameters:
- in: header
name: Authorization
description: Attach Bearer JWT token
required: true
- in: path
name: transactionId
description: id for return transaction
required: true
schema:
type:string
# $ref: '#/definitions/Transaction'
produces:
- application/json
responses:
'200':
description: Fetch transactions list Successfully
schema:
properties:
status:
type: integer
example: 200
data:
$ref: '#/definitions/Transaction'
'400':
description: Invalid Fields
'500':
description: Internal Server Error
/transactionUpdate/{transactionId}:
put:
tags:
- Transaction Module
summary: Add new transaction
description: New transaction
security:
- Bearer: []
parameters:
- in: header
name: Authorization
description: Attach Bearer JWT token
required: true
schema:
type:string
# $ref: '#/definitions/Transaction'
- in: body
name: body
description: body for add transaction request
required: true
schema:
type: object
properties:
category:
type: object
properties:
id:
type: string
example: 1454
name:
type: string
example: food
notes:
type: string
example: my notes
produces:
- application/json
responses:
'200':
description: Add transaction Successfully
schema:
type: object
properties:
status:
type: integer
example: 200
message:
type: string
example: Transaction saved!
data:
type: object
$ref: '#/definitions/Transaction'
'400':
description: Invalid Fields
'401':
description: Transaction unauthorized
schema:
type: object
properties:
status:
type: integer
example: 401
message:
type: string
example: Transaction refusé
'500':
description: Internal Server Error
securityDefinitions:
Bearer:
type: apiKey
name: Authorization
in: header
definitions:
Transaction:
type: object
properties:
id:
type: string
example: '112'
date:
type: date
example: June 20th, 2020
description:
type: string
example: Golden Sun Bakery
amount:
type: number
example: 5.00
balance:
type: number
example: '2089.79'
details:
type: array
items:
$ref: '#/definitions/Details'
Details:
type: object
properties:
transactionType:
type: object
properties:
id:
type: string
example: 11545
name:
type: string
example: Electronic
category:
type: object
properties:
id:
type: string
example: 1455
name:
type: string
example: Food
notes:
type: object
properties:
content:
type: string
example: 'notes example'
Transactions:
type: array
items:
$ref: '#/definitions/Transaction'