-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathswagger.yaml
512 lines (511 loc) · 12.8 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
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
openapi: 3.0.3
info:
title: Scaratec Invoice & Payment API
description: Scaratec Invoice & Payment API
version: 1.0.0
termsOfService: https://pay.scaratec.com/api
contact:
name: Scaratec
email: [email protected]
url: https://scaratec.com
servers:
- url: 'http://localhost:9005'
paths:
/ping:
get:
summary: Check if the server is running
security: [ ] # no security
description: Check if the api is live Return pong
operationId: ping
responses:
'200':
description: Server is up
content:
application/json:
schema:
allOf:
- $ref: '#/components/schemas/Response'
- properties:
data:
$ref: '#/components/schemas/Pong'
type: object
default:
description: Unexpected error
content:
application/json:
schema:
$ref: '#/components/schemas/Response'
/entities/{emailId}/email:
get:
summary: get business entity by email
tags:
- getBusinessEntityByEmail
security: [ ]
operationId: getBusinessEntityByEmail
parameters:
- name: emailId
in: path
description: Email of entity
required: true
schema:
type: string
responses:
'200':
description: Get business entity by email response
content:
application/json:
schema:
type: object
allOf:
- $ref: '#/components/schemas/Response'
- properties:
data:
$ref: '#/components/schemas/BusinessEntity'
default:
description: an error occured
content:
application/json:
schema:
allOf:
- $ref: '#/components/schemas/Response'
- properties:
error:
default: true
type: boolean
/entities:
get:
summary: get business entities
tags:
- businessEntities
security: [ ]
operationId: listEntities
parameters:
- name: limit
in: query
description: list of entities
required: true
schema:
type: number
- name: offset
in: query
description: entities list offset
required: true
schema:
type: number
responses:
'200':
description: entity list
content:
application/json:
schema:
allOf:
- $ref: '#/components/schemas/Response'
- properties:
data:
$ref: '#/components/schemas/BusinessContactResp'
type: object
default:
description: an error occured
content:
application/json:
schema:
$ref: '#/components/schemas/Response'
post:
summary: create a new business entity
tags:
- businessEntity
security: [ ]
operationId: businessEntity
requestBody:
description: create business entity
required: true
content:
application/json:
schema:
$ref: '#/components/schemas/BusinessEntity'
responses:
'201':
description: business entity created
content:
application/json:
schema:
$ref: '#/components/schemas/Response'
default:
description: an error occured
content:
application/json:
schema:
allOf:
- $ref: '#/components/schemas/Response'
- properties:
error:
default: true
type: boolean
/contacts:
get:
summary: get business contacts
tags:
- contacts
security:
- bearerAuth: [ ]
operationId: listContacts
parameters:
- name: limit
in: query
description: list of contacts
required: true
schema:
type: number
- name: offset
in: query
description: contact list offset
required: true
schema:
type: number
responses:
'200':
description: contact list
content:
application/json:
schema:
allOf:
- $ref: '#/components/schemas/Response'
- properties:
data:
$ref: '#/components/schemas/BusinessContactResp'
type: object
default:
description: an error occured
content:
application/json:
schema:
$ref: '#/components/schemas/Response'
post:
summary: create a new business contact
tags:
- contacts
security:
- bearerAuth: [ ]
operationId: createContact
requestBody:
description: 'create business contact'
required: true
content:
application/json:
schema:
$ref: '#/components/schemas/BusinessContact'
responses:
'201':
description: Contact created
content:
application/json:
schema:
$ref: '#/components/schemas/Response'
default:
description: an error occured
content:
application/json:
schema:
$ref: '#/components/schemas/Response'
/invoice-recipients:
post:
summary: create business invoice recipient
tags:
- invoiceRecipient
operationId: createInvoiceRecipient
security:
- bearerAuth: [ ]
requestBody:
description: 'create business contact invoice recipient'
required: true
content:
application/json:
schema:
$ref: '#/components/schemas/InvoiceRecipient'
responses:
'201':
description: Invoice recipient created
content:
application/json:
schema:
$ref: '#/components/schemas/Response'
default:
description: error message occured
content:
application/json:
schema:
$ref: '#/components/schemas/Response'
/invoices:
get:
summary: get business invoice
tags:
- invoice
security:
- bearerAuth: [ ]
operationId: invoiceList
parameters:
- name: limit
in: query
description: list of invoice
required: true
schema:
type: number
- name: offset
in: query
description: contact list offset
required: true
schema:
type: number
responses:
'200':
description: invoice list
content:
application/json:
schema:
allOf:
- $ref: '#/components/schemas/Response'
- properties:
data:
$ref: '#/components/schemas/InvoiceResp'
type: object
default:
description: an error occured
content:
application/json:
schema:
$ref: '#/components/schemas/Response'
post:
summary: create a new invoice
tags:
- createInvoice
security: [ ]
operationId: createInvoice
requestBody:
description: 'create invoice'
required: true
content:
application/json:
schema:
$ref: '#/components/schemas/Invoice'
responses:
'201':
description: Invoice created
content:
application/json:
schema:
$ref: '#/components/schemas/Response'
default:
description: an error occured
content:
application/json:
schema:
$ref: '#/components/schemas/Response'
components:
securitySchemes:
bearerAuth:
type: http
scheme: bearer
bearerFormat: JWT
schemas:
Pong:
type: object
required:
- message
properties:
message:
type: string
Response:
type: object
required:
- status
- data
- message
- error
properties:
status:
type: integer
data:
oneOf:
- type: object
- type: array
message:
type: string
error:
default: false
type: boolean
BusinessEntity:
type: object
required:
- name
- email
- country
- city
- line1
- postal_code
- phone_number
- state
properties:
id:
type: string
description: business entity id
name:
type: string
description: business name
email:
type: string
description: business email
country:
type: string
description: business country use ISO country code
city:
type: string
description: business city
line1:
description: business first address
type: string
postal_code:
description: business postal code/address
type: string
phone_number:
description: business phone number
type: string
organisation_ref:
description: optional - this is clipshyphony organisation id
type: string
line2:
description: optional business second address
type: string
state:
type: string
description: business state or province
BusinessContact:
type: object
required:
- given_name
- family_name
- gender
- email
properties:
given_name:
type: string
family_name:
type: string
gender:
type: string
email:
type: string
id:
type: string
Invoice:
type: object
required:
- customer_id
- billing_entity_id #business contact id
- is_recurring
- start_date
- due_date
properties:
id:
type: string
invoice_number:
type: string
description:
type: string
customer_id:
type: string
billing_entity_id:
type: string
sub_total:
type: number
is_recurring:
type: string
currency:
type: string
tax_amount:
type: number
total_amount:
type: number
amount_paid:
type: number
balance:
type: number
start_date:
type: string
format: date
example: "2022-01-30"
due_date:
type: string
format: date
example: "2022-01-30"
pdf_path:
type: string
status:
type: string
InvoiceRecipient:
type: object
required:
- company_name
- contact_id
- email
- is_company
- address1
- address2
- zip
- city
- country
- billing_contact
- vat_id
- source_of_business
properties:
company_name:
type: string
id:
type: string
email:
type: string
is_company:
type: boolean
address1:
type: string
address2:
type: string
zip:
type: string
city:
type: string
country:
type: string
billing_contact:
type: string
vat_id:
type: string
source_of_business:
type: string
contact_id:
type: string
BusinessContactResp:
type: object
properties:
business_contacts:
description: list on business contacts
type: array
items:
minItems: 20
maxItems: 20
allOf:
- $ref: '#/components/schemas/BusinessContact'
required:
- business_contacts
InvoiceResp:
type: object
properties:
invoices:
description: list of invoices
type: array
minItems: 20
maxItems: 20
items:
allOf:
- $ref: '#/components/schemas/Invoice'
required:
- invoices