-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathswagger.yaml
437 lines (428 loc) · 9.63 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
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
swagger: '2.0'
info:
description: Servicio Rest para la aplicación Contable.
version: 1.0.0
title: Contable Rest API
contact:
email: [email protected]
license:
name: Apache 2.0
url: 'http://www.apache.org/licenses/LICENSE-2.0.html'
host: estudiocontable.com.uy
basePath: /rest/api
tags:
- name: login
description: Autorización inicial
- name: client
description: Acceder a la información del cliente
- name: report
description: Acceder a la información de los reportes
- name: news
description: Noticias del sitio
schemes:
- https
- http
paths:
/login:
post:
tags:
- login
summary: Get authorization token
description: ''
operationId: login
consumes:
- application/json
produces:
- application/json
parameters:
- in: body
name: Body
description: Login de usuario
required: true
schema:
$ref: '#/definitions/LoginRequest'
responses:
'200':
description: successful operation
schema:
$ref: '#/definitions/LoginResponse'
'400':
description: Bad Request
/:
get:
tags:
- client
summary: Retorna los datos basicos de los clientes asociados
description: Devuelve los clientes asociados al usuario
operationId: loggedInfo
produces:
- application/json
parameters: []
responses:
'200':
description: successful operation
schema:
$ref: '#/definitions/LoggedClientResponse'
'400':
description: Bad Request
'403':
description: Permiso denegado
security:
- Bearer: []
/report/month-data:
post:
tags:
- report
summary: Retorna los datos del mes requerido
description: Devuelve los clientes asociados al usuario
operationId: reportMonthData
consumes:
- application/json
produces:
- application/json
parameters:
- in: body
name: Body
description: Mes de la consulta
required: true
schema:
$ref: '#/definitions/MonthReportRequest'
responses:
'200':
description: successful operation
schema:
$ref: '#/definitions/MonthReportResponse'
'400':
description: Bad Request
'403':
description: Permiso denegado
security:
- Bearer: []
/report/current-account-data:
post:
tags:
- report
summary: Retorna los datos del mes para una cuenta
description: Devuelve los datos de la cuenta
operationId: reportCurrentAccount
consumes:
- application/json
produces:
- application/json
parameters:
- in: body
name: Body
description: Mes, año y cliente a consultar
required: true
schema:
$ref: '#/definitions/CurrentAccountReportRequest'
responses:
'200':
description: successful operation
schema:
$ref: '#/definitions/CurrentAccountResponse'
'400':
description: Bad Request
'403':
description: Permiso denegado
security:
- Bearer: []
/news/:
get:
tags:
- news
summary: Retorna las noticias del sitio
description: Retorna las noticias del sitio
operationId: newsData
produces:
- application/json
parameters: []
responses:
'200':
description: successful operation
schema:
$ref: '#/definitions/NewsResponse'
'400':
description: Bad Request
'403':
description: Permiso denegado
security:
- Bearer: []
securityDefinitions:
Bearer:
type: apiKey
name: Authorization
in: header
definitions:
Client:
type: object
properties:
id:
type: integer
format: int32
carpeta:
type: string
razonsocial:
type: string
LoggedClientResponse:
type: object
properties:
success:
type: boolean
default: false
username:
type: string
clients:
type: array
items:
$ref: '#/definitions/Client'
LoginResponse:
type: object
properties:
success:
type: boolean
default: false
token:
type: string
error:
type: string
LoginRequest:
type: object
properties:
_username:
type: string
_password:
type: string
MonthReportCalendarPaymentsTaxes:
type: object
properties:
name:
type: string
amount:
type: integer
format: float
MonthReportCalendarPayments:
type: object
properties:
whopays:
type: integer
format: int32
amountWithTaxes:
type: integer
format: float
notes:
type: string
createdat:
type: string
format: date-time
updatedat:
type: string
format: date-time
paid:
type: boolean
default: false
notconfirmed:
type: boolean
default: false
notpayment:
type: boolean
default: false
notified:
type: boolean
default: false
reviewed:
type: boolean
default: false
taxes:
type: array
items:
$ref: '#/definitions/MonthReportCalendarPaymentsTaxes'
MonthReportCalendar:
type: object
properties:
id:
type: integer
format: int32
name:
type: string
review:
type: boolean
default: false
month:
type: integer
format: int32
taxes:
type: boolean
default: false
payments:
type: array
items:
$ref: '#/definitions/MonthReportCalendarPayments'
MonthReport:
type: object
properties:
client:
$ref: '#/definitions/Client'
calendar:
type: array
items:
$ref: '#/definitions/MonthReportCalendar'
MonthReportResponse:
type: object
properties:
success:
type: boolean
default: false
data:
$ref: '#/definitions/MonthReport'
MonthReportRequest:
type: object
properties:
year:
type: integer
format: int32
month:
type: integer
format: int32
CurrentAccountReportRequest:
type: object
properties:
year:
type: integer
format: int32
month:
type: integer
format: int32
folder:
type: string
CurrentAccountClientMovements:
type: object
properties:
AcumuladoDolares:
type: integer
format: float
AcumuladoPesos:
type: integer
format: float
Cliente:
type: string
Documento:
type: string
FECHA:
type: string
format: date-time
SaldoDolares:
type: integer
format: float
SaldoPesos:
type: integer
format: float
TipoCliente:
type: string
TipoDoc:
type: string
UnidadNegocios:
type: string
CurrentAccountClientSaldoFinal:
type: object
properties:
SaldoDolares:
type: integer
format: float
SaldoPesos:
type: integer
format: float
CurrentAccountClientSaldoInicial:
type: object
properties:
SaldoDolares:
type: integer
format: float
SaldoPesos:
type: integer
format: float
CurrentAccountClientAccountType:
type: object
properties:
tipo:
type: string
Movimientos:
type: array
additionalProperties:
type: string
items:
$ref: '#/definitions/CurrentAccountClientMovements'
SaldoFinal:
$ref: '#/definitions/CurrentAccountClientSaldoFinal'
SaldoInicial:
$ref: '#/definitions/CurrentAccountClientSaldoInicial'
CurrentAccountClientAccountSubtotal:
type: object
properties:
SaldoDolares:
type: integer
format: float
SaldoPesos:
type: integer
format: float
CurrentAccountClientAccountTotal:
type: object
properties:
SaldoDolares:
type: integer
format: float
SaldoPesos:
type: integer
format: float
CurrentAccountClientAccount:
type: object
properties:
cliente:
type: string
cuentas:
type: array
items:
$ref: '#/definitions/CurrentAccountClientAccountType'
SubtotalCliente:
$ref: '#/definitions/CurrentAccountClientAccountSubtotal'
CurrentAccountClient:
type: object
properties:
Clientes:
type: array
items:
$ref: '#/definitions/CurrentAccountClientAccount'
Grupo:
type: string
TotalGrupo:
$ref: '#/definitions/CurrentAccountClientAccountTotal'
CurrentAccountResponse:
type: object
properties:
success:
type: boolean
default: false
data:
$ref: '#/definitions/CurrentAccountClient'
News:
type: object
properties:
id:
type: integer
default: int32
title:
type: string
content:
type: string
author:
type: string
NewsResponse:
type: object
properties:
success:
type: boolean
default: false
news:
type: array
items:
$ref: '#/definitions/News'