-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathswagger.yaml
2389 lines (2309 loc) · 68.9 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
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
openapi: 3.0.1
info:
title: Debbie Platform API Docs
description: |
The Debbie APIs is a RESTful interface, allowing you to programmatically
update, add and access your data in the platform. It provides predictable URLs
for accessing resources, and uses built-in HTTP features to receive commands and
return responses. This makes it easy to communicate with third party systems.
## Idempotency
The Debbie API supports idempotency for non-idempotent requests through the optional `Idempotency-Key` header.
This ensures that retrying the same request multiple times will produce the same result, preventing duplicate operations.
### Using Idempotency Keys
- Include an `Idempotency-Key` header with a unique string (we recommend UUIDs)
- Maximum key length is 64 characters
- Keys are valid for 48 hours
- Responses served from the idempotency cache include an `Idempotency-Cached` header
### Example
```http
Idempotency-Key: 123e4567-e89b-12d3-a456-426614174000
```
### Error Cases
- Invalid key format: 400 Bad Request
- Reusing a key for a different request: 400 Bad Request
### Best Practices
- Use a new key for each unique business transaction
- Use the same key when retrying a failed request
- Store keys with request details for debugging
contact:
email: support@debbie.dk
version: v0.1.0
x-logo:
url: https://debbie-platform.github.io/platform-api-docs/deb-logo.svg
externalDocs:
description: Find out more about Debbie here
url: https://debbie.dk
servers:
- url: https://api.debbiecollect.com
tags:
- name: Authorization
description: Endpoints for interacting with authorization
- name: Cases
description: Endpoints for interacting with cases
- name: Customers
description: Endpoints for interacting with customers
- name: Creditors
description: Endpoints for interacting with creditors
- name: Updates
description: Endpoints for interacting with updates
- name: Users
description: Endpoints for interacting with updates
- name: Files
description: Endpoints for interacting with files
- name: Case vouchers
description: Endpoints for interacting with case vouchers
- name: Links
description: Endpoints for generating links
- name: "Webhooks"
description: "Debbie provides a range of webhooks. To try them out please visit Debbie Caseworker and navigate to Settings → Developers → Webhooks."
- name: "Voucher Type Ids"
description: |
### Principals:
| Type | id |
| --- | --- |
| Invoice (Faktura) | eb41e58e-fccf-419d-a771-cd5027fe6e87 |
| Credit note (Kreditnota) | ef2cdc50-230f-4046-b1af-0f9c498dddd3 |
| Final statement (Opgørelse) | 42385ae0-6846-425c-a793-8d47a3b190b5 |
| On account invoice (Acontofaktura) | 2d101b6e-74f9-4a4d-9f8e-c7abe2264da0 |
| Loan (Gældsbrev) | bf61f462-6d3c-42e8-a99a-852d4a664926 |
### Costs:
| Type | id |
| --- | --- |
| Collection cost (Inkassoomkostning) | 07960de4-303d-4793-92da-3a8cfd5da1a1 |
| Collection fee (Inkassogebyr) | 4c3ccbbf-0651-45b2-b37b-4fe736acfd7e |
| Reminder fee (Rykkergebyr) | 3e51bf87-3c8f-4dd5-abd5-69417d113c89 |
| Compensation cost (Kompensationsgebyr) | ed3e3d61-e1bc-4ee2-9166-adf2c41a2bbf |
### Interests:
| Type | id |
| --- | --- |
| DK interest (Procesrente) | ca4af363-9925-436c-83d6-23b3db6ed5d2 |
| Fixed interest (Fastrente) | 299dc393-1b71-4950-860f-8fb485036722 |
| Yearly interest (Årlig rente) | 37db68dd-80be-40c7-8d2d-3619c793107f |
### Transactions:
| Type | id |
| --- | --- |
| Deposit (Indbetaling) | c51f2f6a-8081-45ef-b52d-5e0569fdf12e |
paths:
/iam/auth/permissions:
get:
tags:
- Authorization
summary: Get permissions
description: Scopes that the bearer token has access to
operationId: get-auth-permissions
responses:
200:
description: Successful operation
content:
application/json:
schema:
$ref: "#/components/schemas/Permissions"
example:
scopes:
- "read:cases"
- "write:cases"
401:
$ref: "#/components/responses/UnauthorizedError"
422:
$ref: "#/components/responses/UnprocessableContent"
x-codegen-request-body-name: body
/collection-engine/v1/{tenantId}/cases:
post:
tags:
- Cases
summary: Create new case
description: Create new case allows the api consumer to create new cases
operationId: create-case
parameters:
- in: path
name: tenantId
schema:
type: string
format: uuid
required: true
description: Id of the tenant the case is being created for
requestBody:
description: New case object
content:
application/json:
schema:
$ref: "#/components/schemas/NewCase"
example:
creditorId: 245ac5f9-2795-4a91-8201-cb762dc88f70
isCompany: false
currency: EUR
customerId: a7fcf07c-74f2-40d9-8ea6-e67b07b14ca4
caseVouchers:
- referenceId: Fakt. 123456
voucherTypeId: eb41e58e-fccf-419d-a771-cd5027fe6e87
amount: -259900
source: "CREDITOR"
date: "2024-05-01 00:00:00.000+01"
dueDate: "2024-05-08 00:00:00.000+01"
referenceVouchers:
- interestStartDate: "2024-06-01 00:00:00.000+01"
amount: 0
source: "COLLECTOR"
voucherTypeId: ca4af363-9925-436c-83d6-23b3db6ed5d2
date: "2024-06-01 00:00:00.000+01"
- voucherTypeId: 3e51bf87-3c8f-4dd5-abd5-69417d113c89
amount: -10000
source: "CREDITOR"
date: "2024-05-28 00:00:00.000+01"
- voucherTypeId: 3e51bf87-3c8f-4dd5-abd5-69417d113c89
amount: -10000
source: "CREDITOR"
date: "2024-06-07 00:00:00.000+01"
required: true
responses:
200:
description: Successful operation
content:
application/json:
schema:
$ref: "#/components/schemas/CaseCreated"
401:
$ref: "#/components/responses/UnauthorizedError"
422:
$ref: "#/components/responses/UnprocessableContent"
x-codegen-request-body-name: body
/collection-engine/v1/{tenantId}/cases/{id}:
patch:
tags:
- Cases
summary: Update a case
description: Updates attributes of a case given the cases id
operationId: update-case
parameters:
- in: path
name: tenantId
schema:
type: string
format: uuid
required: true
description: Id of the tenant the case belongs to
- in: path
name: id
schema:
type: string
format: uuid
required: true
description: Id the case to be updated
requestBody:
description: Update case object
content:
application/json:
schema:
$ref: "#/components/schemas/UpdateCase"
example:
status: ENDED
reason: PAID
required: true
responses:
204:
description: Successful operation
content: {}
401:
$ref: "#/components/responses/UnauthorizedError"
422:
$ref: "#/components/responses/UnprocessableContent"
x-codegen-request-body-name: body
get:
tags:
- Cases
summary: Get a case
description: Get a case by id
operationId: get-case
parameters:
- in: path
name: tenantId
schema:
type: string
format: uuid
required: true
description: Id of the tenant the case belongs to
- in: path
name: id
schema:
type: string
format: uuid
required: true
description: Id of the case to be retrieved
responses:
200:
description: Successful operation
content:
application/json:
schema:
$ref: "#/components/schemas/GetCase"
example:
id: 123456
caseId: 268b30d2-e895-42b9-8a38-2451a87e19b2
status: PENDING
statusTime: 2022-04-19T07:30:21.070Z
exitReason: null
createdAt: 2022-04-19T07:30:21.070Z
creditorId: 29654f0c-d424-41e4-9eec-85bef089eaf9
isCompany: false
migratedId: null,
type: TENANT
tenantId: 59f52305-00e0-4983-b5f1-43594b39b81f
401:
$ref: "#/components/responses/UnauthorizedError"
422:
$ref: "#/components/responses/UnprocessableContent"
x-codegen-request-body-name: body
/collection-engine/v1/{tenantId}/customers:
post:
tags:
- Customers
summary: Create new customer
description: Create new customer allows the api consumer to create a customer related to a creditor
operationId: create-customer
parameters:
- in: path
name: tenantId
schema:
type: string
format: uuid
required: true
description: Id of the tenant the case is being created for
- in: query
name: creditorId
schema:
type: string
required: true
description: Creditor id that the customer is related to
requestBody:
description: New customer object
content:
application/json:
schema:
$ref: "#/components/schemas/NewCustomer"
example:
isCompany: false
referenceId: "123"
users:
- contact: true
lang: da
relation: debtor
details:
name: Hans Hansen
email: example@debbie.dk
phone:
locale: "45"
number: "12345678"
address:
address: Applebys Plads 7, 1.
coAddress: null
city: København K
zipcode: "1411"
cpr: "1209981919"
cvr: null
required: true
responses:
200:
description: Successful operation
content:
application/json:
schema:
$ref: "#/components/schemas/CustomerCreated"
401:
$ref: "#/components/responses/UnauthorizedError"
422:
$ref: "#/components/responses/UnprocessableContent"
x-codegen-request-body-name: body
/collection-engine/v1/{tenantId}/customers/{customerId}/add-vouchers:
post:
tags:
- Customers
summary: Add case vouchers
description: Add new case vouchers to a customer
operationId: add-case-vouchers-to-customer
parameters:
- in: path
name: tenantId
schema:
type: string
format: uuid
required: true
description: Id of the tenant the customer is related to
- in: path
name: customerId
schema:
type: string
required: true
description: Customer id
requestBody:
description: List of new case vouchers
content:
application/json:
schema:
type: object
properties:
caseVouchers:
type: array
items:
$ref: "#/components/schemas/NewCaseVoucher"
example:
caseVouchers:
- currency: DKK
amount: -100000
referenceId: D12412347
text: J.no. 1234
date: "2024-05-28 00:00:00.000+01"
source: "CREDITOR"
voucherTypeId: eb41e58e-fccf-419d-a771-cd5027fe6e87
required: true
responses:
200:
description: Successful operation
content:
application/json:
schema:
$ref: "#/components/schemas/CaseVoucherAddedToCustomer"
x-codegen-request-body-name: body
/collection-engine/v1/{tenantId}/customers/{id}:
get:
tags:
- Customers
summary: Get a customer by id
description: Get a customer by customer id
operationId: get-customer
parameters:
- in: path
name: tenantId
schema:
type: string
format: uuid
required: true
description: Id of the tenant the case belongs to
- in: path
name: id
schema:
type: string
format: uuid
required: true
description: Id of the customer to be retrieved
responses:
200:
description: Successful operation
content:
application/json:
schema:
$ref: "#/components/schemas/GetCustomer"
example:
id: 123456
customerId: 268b30d2-e895-42b9-8a38-2451a87e19b2
isCompany: false
referenceId: "123"
users:
- contact: true
lang: en
relation: debtor
details:
name: Hans Hansen
email: email@example.com
phone:
locale: "45"
number: "12345678"
address:
address: Applebys Plads 7, 1.
coAddress: null
city: København K
zipcode: "1411"
country: Danmark
cases:
- caseId: 268b30d2-e895-42b9-8a38-2451a87e19b2
status: PENDING
statusTime: 2022-04-19T07:30:21.070Z
exitReason: null
createdAt: 2022-04-19T07:30:21.070Z
401:
$ref: "#/components/responses/UnauthorizedError"
422:
$ref: "#/components/responses/UnprocessableContent"
x-codegen-request-body-name: body
/collection-engine/v1/{tenantId}/customers/by-reference-id/{referenceId}:
get:
tags:
- Customers
summary: Get customer by reference id
description: Get a customer by customer reference id
operationId: get-customer-by-reference-id
parameters:
- in: path
name: tenantId
schema:
type: string
format: uuid
required: true
description: Id of the tenant the customer is related to
- in: path
name: referenceId
schema:
type: string
required: true
description: Customer id that the customer is related to
- in: query
name: creditorId
schema:
type: string
required: true
description: Creditor id that the customer is related to
requestBody:
description: New customer object
content:
application/json:
schema:
$ref: "#/components/schemas/NewCustomer"
example:
isCompany: false
referenceId: "123"
users:
- contact: true
lang: da
relation: debtor
details:
name: Hans Hansen
email: example@debbie.dk
phone:
locale: "45"
number: "12345678"
address:
address: Applebys Plads 7, 1.
coAddress: null
city: København K
zipcode: "1411"
cpr: "1209981919"
cvr: null
required: true
responses:
200:
description: Successful operation
content:
application/json:
schema:
$ref: "#/components/schemas/CustomerCreated"
401:
$ref: "#/components/responses/UnauthorizedError"
422:
$ref: "#/components/responses/UnprocessableContent"
x-codegen-request-body-name: body
/collection-engine/v1/{tenantId}/creditors:
post:
tags:
- Creditors
summary: Create new creditor
description: Create new creditor allows the api consumer to create new creditors
operationId: create-creditor
parameters:
- in: path
name: tenantId
schema:
type: string
format: uuid
required: true
description: Id of the tenant the creditor is being created for
requestBody:
description: New creditor object
content:
application/json:
schema:
$ref: "#/components/schemas/NewCreditor"
example:
id: My reference
name: John Doe's Factories
centralRegisterId: DK40125949
isCompany: true
address:
address: Applebys Pl. 7, 1.
coAddress:
city: København K
zipcode: "1411"
country: Danmark
notes: Note to self (and my colleagues).
erpLink: https://example.com?id={{customerReferenceId}}&test
acquisitionResponsibleId: 9409b6d8-cde5-45f1-b8e1-e756847a7077
contactId: bb71f936-c60c-4ad7-82f6-eddca673d30f
caseworkerContactId: 9409b6d8-cde5-45f1-b8e1-e756847a7077
defaultWorkflowId: 3057ca58-d39d-48ec-9d79-c45182b92ca0
state: ACTIVE
vatRegistered: true
aksEnabled: true
bankAccountDetails:
type: DANISH
registrationNumber: "1234"
accountNumber: "00012345678"
selfCollection: false
required: true
responses:
200:
description: Successful operation
content:
application/json:
schema:
$ref: "#/components/schemas/CreditorCreated"
401:
$ref: "#/components/responses/UnauthorizedError"
409:
$ref: "#/components/responses/ConflictError"
422:
$ref: "#/components/responses/UnprocessableContent"
x-codegen-request-body-name: body
/collection-engine/v1/{tenantId}/creditors/{creditorId}:
get:
tags:
- Creditors
summary: Get creditor
description: Get a creditor
operationId: get-creditor
parameters:
- in: path
name: tenantId
schema:
type: string
format: uuid
required: true
description: Id of the tenant the creditor is related to
- in: path
name: creditorId
schema:
type: string
format: uuid
required: true
description: Id of the creditor
responses:
200:
description: Successful operation
content:
application/json:
schema:
$ref: "#/components/schemas/Creditor"
example:
acquisitionResponsibleId: 9409b6d8-cde5-45f1-b8e1-e756847a7077
contactId: bb71f936-c60c-4ad7-82f6-eddca673d30f
caseworkerContactId: 9409b6d8-cde5-45f1-b8e1-e756847a7077
notes: Note to self (and my colleagues).
name: John Doe's Factories
defaultCollectorId: f6700acf-edf6-4ef7-8e39-fa5f45d20c0d
defaultChainId: 3057ca58-d39d-48ec-9d79-c45182b92ca0
aksEnabled: true
vatRegistered: true
centralRegisterId: DK40125949
isCompany: true
state: ACTIVE
id: My reference
selfCollection: false
experianClientId: 125134
creditorId: a087de99-19aa-4f40-9883-fa4b20f3dff1
debtorFAQ: Frequently asked questions
defaultClientChainId: 3057ca58-d39d-48ec-9d79-c45182b92ca0
defaultBillingModelId: 9860cf1a-b4d9-4d4e-a085-298c4781eca0
401:
$ref: "#/components/responses/UnauthorizedError"
422:
$ref: "#/components/responses/UnprocessableContent"
x-codegen-request-body-name: body
patch:
tags:
- Creditors
summary: Patch creditor
description: Patch a creditor
operationId: patch-creditor
parameters:
- in: path
name: tenantId
schema:
type: string
format: uuid
required: true
description: Id of the tenant the creditor is related to
- in: path
name: creditorId
schema:
type: string
format: uuid
required: true
description: Id of the creditor
requestBody:
description: Patch creditor object
content:
application/json:
schema:
$ref: "#/components/schemas/PatchCreditor"
example:
acquisitionResponsibleId: 9409b6d8-cde5-45f1-b8e1-e756847a7077
contactId: bb71f936-c60c-4ad7-82f6-eddca673d30f
caseworkerContactId: 9409b6d8-cde5-45f1-b8e1-e756847a7077
notes: Note to self (and my colleagues).
name: John Doe's Factories
defaultCollectorId: f6700acf-edf6-4ef7-8e39-fa5f45d20c0d
defaultChainId: 3057ca58-d39d-48ec-9d79-c45182b92ca0
aksEnabled: true
vatRegistered: true
centralRegisterId: DK40125949
isCompany: true
state: ACTIVE
id: My reference
selfCollection: false
experianClientId: 125134
creditorId: a087de99-19aa-4f40-9883-fa4b20f3dff1
debtorFAQ: Frequently asked questions
defaultClientChainId: 3057ca58-d39d-48ec-9d79-c45182b92ca0
defaultBillingModelId: 9860cf1a-b4d9-4d4e-a085-298c4781eca0
required: true
responses:
200:
description: Successful operation
content: {}
401:
$ref: "#/components/responses/UnauthorizedError"
422:
$ref: "#/components/responses/UnprocessableContent"
x-codegen-request-body-name: body
/collection-engine/v1/{tenantId}/updates:
post:
tags:
- Updates
summary: Create new update
description: Create new update allows the api consumer to create new updates
operationId: create-update
parameters:
- in: path
name: tenantId
schema:
type: string
format: uuid
required: true
description: Id of the tenant the update is related to
requestBody:
description: New update object
content:
application/json:
schema:
$ref: "#/components/schemas/NewUpdate"
example:
referenceId: 9409b6d8-cde5-45f1-b8e1-e756847a7077
updateTypeId: a49c6124-fb23-4976-8400-9afd9018bc85
update: Optional text to the users can be included here
remindedAt: "2024-05-01 00:00:00.000+01"
required: true
responses:
200:
description: Successful operation
content:
application/json:
schema:
example:
updateId: 56e93ac4-a89d-422a-b2da-5ed5a052477d
401:
$ref: "#/components/responses/UnauthorizedError"
422:
$ref: "#/components/responses/UnprocessableContent"
x-codegen-request-body-name: body
/collection-engine/v1/{tenantId}/updates/{updateId}:
patch:
tags:
- Updates
summary: Patch update
description: Patch an existing update
operationId: patch-update
parameters:
- in: path
name: tenantId
schema:
type: string
format: uuid
required: true
description: Id of the tenant the update is related to
- in: path
name: updateId
schema:
type: string
format: uuid
required: true
description: Id of the update
requestBody:
description: Patch update object
content:
application/json:
schema:
$ref: "#/components/schemas/PatchUpdate"
example:
continuedAt: "2024-05-01 00:00:00.000+01"
required: true
responses:
200:
description: Successful operation
content: {}
401:
$ref: "#/components/responses/UnauthorizedError"
422:
$ref: "#/components/responses/UnprocessableContent"
x-codegen-request-body-name: body
/iam/{tenantId}/users:
post:
tags:
- Users
summary: Create new user
description: Create a user
operationId: create-user
parameters:
- in: path
name: tenantId
schema:
type: string
format: uuid
required: true
description: Id of the tenant
requestBody:
description: Create new user object
content:
application/json:
schema:
$ref: "#/components/schemas/NewUser"
example:
email: john.doe123@example.com
phone:
locale: "45"
number: "12345678"
username: john.doe123@example.com
firstName: John
lastName: Doe
role: client
sendInvite: true
emailPreferences:
todoNotifications: true
tenant:
role: client
scopes: []
creditors:
- id: 8275e7fa-c43b-4787-a61d-1815390f7686
scopes: []
required: true
responses:
200:
description: Successful operation
content: {}
401:
$ref: "#/components/responses/UnauthorizedError"
409:
$ref: "#/components/responses/ConflictError"
422:
$ref: "#/components/responses/UnprocessableContent"
x-codegen-request-body-name: body
get:
tags:
- Users
summary: Get users
description: Get all users on tenant
operationId: get-users
parameters:
- in: path
name: tenantId
schema:
type: string
format: uuid
required: true
description: Id of the tenant
responses:
200:
description: Successful operation
content:
application/json:
schema:
type: array
items:
$ref: "#/components/schemas/User"
401:
$ref: "#/components/responses/UnauthorizedError"
409:
$ref: "#/components/responses/ConflictError"
422:
$ref: "#/components/responses/UnprocessableContent"
x-codegen-request-body-name: body
/iam/{tenantId}/users/search:
post:
tags:
- Users
summary: Search users
description: Search all users
operationId: search-users
parameters:
- in: path
name: tenantId
schema:
type: string
format: uuid
required: true
description: Id of the tenant
- in: query
name: q
schema:
type: string
required: true
description: Your search query. For example the email of the user.
responses:
200:
description: Successful operation
content:
application/json:
schema:
type: array
items:
$ref: "#/components/schemas/User"
401:
$ref: "#/components/responses/UnauthorizedError"
409:
$ref: "#/components/responses/ConflictError"
422:
$ref: "#/components/responses/UnprocessableContent"
x-codegen-request-body-name: body
/iam/{tenantId}/users/{userId}:
get:
tags:
- Users
summary: Get a user
description: Get a single user
operationId: get-user
parameters:
- in: path
name: tenantId
schema:
type: string
format: uuid
required: true
description: Id of the tenant
- in: path
name: userId
schema:
type: string
format: uuid
required: true
description: Id of the user
responses:
200:
description: Successful operation
content:
application/json:
schema:
$ref: "#/components/schemas/User"
401:
$ref: "#/components/responses/UnauthorizedError"
409:
$ref: "#/components/responses/ConflictError"
422:
$ref: "#/components/responses/UnprocessableContent"
x-codegen-request-body-name: body
patch:
tags:
- Users
summary: Patch a user
description: Patch a single user
operationId: patch-user
parameters:
- in: path
name: tenantId
schema:
type: string
format: uuid
required: true
description: Id of the tenant
- in: path
name: userId
schema:
type: string
format: uuid
required: true
description: Id of the user
requestBody:
description: Patch user object
content:
application/json:
schema:
$ref: "#/components/schemas/PatchUser"
example:
phone:
locale: "45"
number: "12345678"
email: john.doe@example.com
firstName: John
lastName: Doe
emailPreferences:
todoNotifications: true
creditors:
- id: 8275e7fa-c43b-4787-a61d-1815390f7686
scopes: []
required: true
responses:
200:
description: Successful operation
content: {}
401:
$ref: "#/components/responses/UnauthorizedError"
409:
$ref: "#/components/responses/ConflictError"
422:
$ref: "#/components/responses/UnprocessableContent"
x-codegen-request-body-name: body
/v1/{tenantId}/case-vouchers/{caseId}:
post:
tags:
- Case vouchers
summary: Add voucher to case
description: Add voucher to case
operationId: add-case-voucher
parameters:
- in: path
name: tenantId