-
Notifications
You must be signed in to change notification settings - Fork 1
/
recover-openapi.json
2754 lines (2754 loc) · 90.3 KB
/
recover-openapi.json
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.2",
"info": {
"title": "TrueAccord API",
"version": "1.0",
"description": "The TrueAccord API is a RESTful API used to manage collections with the TrueAccord platform. \n\nAll requests must be performed using a HTTPS connection.\n\n# Authentication\nRequest to the TrueAccord API are authenticated using an API key with [HTTP Basic Access Authentication](https://en.wikipedia.org/wiki/Basic_access_authentication). Currently only active customers may provision an API key. Contact your account manager for more information about getting an API key. \n\nTo create API requests with your API key programmatically, include a header on the request with the following structure:\n```\nAuthorization: Basic <YOUR_API_KEY>\n```\n\n## Testing Your API Key\nOnce you have an API key, you can test it using the following command:\n```bash\n$ curl https://api.trueaccord.com/api/v1/customers/ -u $YOUR_API_KEY:\n``` \n**Note:** You must keep the colon (\":\") after your API key, as this represents a password which is being left blank.\n\nYou can also query the API in the browser with the same endpoint, https://api.trueaccord.com/api/v1/customers/. You'll be asked to provide a username and password in a pop-up alert. Copy-paste your API key into the username field, leave the password blank, and click the \"Sign In\" button. You'll see the JSON response in the browser window.\n",
"x-logo": {
"url": "https://raw.githubusercontent.com/othc/openapi-spec/master/src/trueaccord-logo-blue-background.png?token=ASCXFQTBWSGCS3RAOHKNXN3AFUTIM"
}
},
"servers": [
{
"url": "https://api.trueaccord.com/api/v1"
}
],
"tags": [
{
"name": "Customers",
"x-displayName": "Customers",
"description": "Create and manage customers."
},
{
"name": "Debts",
"x-displayName": "Debts",
"description": "View customer debt information."
},
{
"name": "Payments",
"x-displayName": "Payments",
"description": "View customer payment information. \n\nCore to the payments endpoints is the `payments` object. The payments object represents a change in a debt's balance.\n\n## Important Fields\n* `amount`: Amount in cents of payment. Postive amount remove from the balance. Negtive amounts increase the balance. \n * For example, if CustomerA owed $60.00, a payment amount of 2500 would remove $25 from the balance, making the new balance $35.00.\n* `payee`: Identifies who received the payment. Can take one of the following values:\n * `CREDITOR`: Payment made directly to creditor.\n * `TRUEACCORD`: Payment made to TrueAccord (acting on behalf of the creditor). \n* `meta`: Object with meta information about the payment. Only present when payment object returned from TrueAccord (not to be included in requests). Object has keys: \n * `timeCreated`: Time in miliseconds since Jan 1, 1970 UTC when payment posted to TrueAccord. \n * `id`: Unique identifier for the payment. \n* `transactionReference`: Used to associate transaction with identifier in customer's internal system.\n* `transactionType`: Identifiers the type of payment and can take the following values:\n * `PAYMENT`: Standard payment. Deducts the debt balance. Amount must be positive. \n * `RETURNED_PAYMENT`: Payment that failed after it was declared successful. Typically used when ACH payments return or when creditor refunds customer. The payment increases the debt balance. Must be negative.\n * `REFUND`: Payment refunded after it was made. Increases debt's balance. Must be negative. \n* `paymentTimestamp`: Optional. Can be used to provide the initial time of payment. Miliseconds since Jan 1, 1970 UTC. If not provided in request, returned same as `meta.timeCreated`. \n\n## Example Payment Object\nHere's an example payment object: \n```json\n {\n \"meta\": {\n \"id\": \"11111111111111111111111111111111\",\n \"timeCreated\": 1385159142788\n },\n \"amount\": {\n \"amount\": 300,\n \"currency\": \"USD\"\n },\n \"payee\": \"TRUEACCORD\",\n \"transactionReference\": \"MyTransactionRef\",\n \"note\": \"Paid directly via CC\",\n \"transactionType\": \"PAYMENT\",\n \"paymentTimestamp\" : 1448818320123\n }\n```\n"
},
{
"name": "Debt Representation",
"x-displayName": "Debt Representation",
"description": "Create and manage customer representation."
},
{
"name": "Creditors",
"x-displayName": "Creditors",
"description": "Manage creditor information."
}
],
"paths": {
"/customers": {
"post": {
"summary": "Create customers (original method)",
"tags": [
"Customers"
],
"description": "One or more customers can be added in a single request. The request body contains an array of Customers under the key `\"customers\"`.",
"requestBody": {
"content": {
"application/json": {
"schema": {
"type": "object",
"properties": {
"customers": {
"type": "array",
"items": {
"$ref": "#/components/schemas/CustomerRequest"
}
},
"addDebtsIfPossible": {
"type": "boolean",
"description": "Optional boolean flag to add new debts to customers in the request if they have already been placed."
},
"customersWithAddedDebts": {
"type": "array",
"items": {
"$ref": "#/components/schemas/CustomerRequest"
},
"description": "Existing customers who had a new debt added"
}
}
}
}
}
},
"responses": {
"201": {
"description": "The response will mirror your request but with an additional `meta` field that can be used in the future to reference the customer objects you have created.\n\n\nIf there are any duplicated customers in the query that have been placed before, their references will appear in the response under the `duplicatedReferences` field.\n\n\nIf `addDebtsIfPossible` is flagged, the response will mirror your request with new customers, and also include a separate field for existing customers that had new debts added, `customersWithAddedDebts`. ",
"content": {
"application/json": {
"schema": {
"type": "object",
"properties": {
"meta": {
"$ref": "#/components/schemas/Meta"
},
"customers": {
"type": "array",
"items": {
"$ref": "#/components/schemas/Customer"
}
},
"addDebtsIfPossible": {
"type": "boolean",
"description": "Optional boolean flag to add new debts to customers in the request if they have already been placed."
},
"customersWithAddedDebts": {
"type": "array",
"items": {
"$ref": "#/components/schemas/Customer"
},
"description": "Existing customers who had a new debt added"
}
}
}
}
}
}
}
},
"get": {
"summary": "Get customers",
"tags": [
"Customers"
],
"description": "Returns a paginated list of Customer objects you created with the current status information on the customers.",
"parameters": [
{
"in": "query",
"name": "offset",
"schema": {
"type": "integer"
},
"description": "Results returned offset from zero, with the 0th result being the first result."
},
{
"in": "query",
"name": "count",
"schema": {
"type": "integer",
"maximum": 100
},
"description": "Number of results returned."
},
{
"$ref": "#/components/parameters/StartTime"
},
{
"$ref": "#/components/parameters/EndTime"
}
],
"responses": {
"200": {
"description": "Ok",
"content": {
"application/json": {
"schema": {
"type": "object",
"properties": {
"totalResponses": {
"type": "integer"
},
"customers": {
"type": "array",
"items": {
"$ref": "#/components/schemas/Customer"
}
}
}
}
}
}
}
}
}
},
"/customers/?reference={internalReferenceId}": {
"get": {
"summary": "Get customers by internal reference",
"tags": [
"Customers"
],
"description": "This will return a customer object or array of customer objects specified by your internal reference number.",
"parameters": [
{
"in": "path",
"name": "internalReferenceId",
"schema": {
"type": "string"
},
"required": true,
"description": "List of internal reference IDs separated by commas. Must have at least 1 value and at most 100 values.",
"example": "abcde123,efghi456,jklmn789"
}
],
"responses": {
"200": {
"description": "Returns a customer object or list of customer objects specified by your internal reference number."
}
}
}
},
"/customers/{customerId}": {
"parameters": [
{
"$ref": "#/components/parameters/CustomerId"
}
],
"get": {
"summary": "Get customer by Customer ID",
"tags": [
"Customers"
],
"description": "Returns a customer object with the given TrueAccord `CUSTOMER_ID`. (Note: the CUSTOMER_ID appears in the `meta` field of the Customer object that was returned when you added the customer. The CUSTOMER_ID also appears in the GET https://api.trueaccord.com/api/v1/customers/ response.)",
"responses": {
"200": {
"description": "Ok",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/Customer"
}
}
}
}
}
},
"put": {
"summary": "Edit customer information",
"tags": [
"Customers"
],
"description": "Edit customer information. \n\nThis is a PUT endpoint and so any information in the payload will be treated as the source of truth. Prior to calling this endpoint, please do a GET request to pull down the most recent information. To disable an email/phone/address do not send it in the payload. ",
"requestBody": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/CustomerRequest"
}
}
}
},
"responses": {
"204": {
"description": "Returns the updated customer information in the TrueAccord system.",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/Customer"
}
}
}
}
}
},
"patch": {
"summary": "Update customer contact info",
"tags": [
"Customers"
],
"description": "Add contact information to customer",
"requestBody": {
"content": {
"application/json": {
"schema": {
"type": "object",
"properties": {
"addresses": {
"$ref": "#/components/schemas/Addresses"
},
"phones": {
"$ref": "#/components/schemas/Phones"
},
"emails": {
"$ref": "#/components/schemas/Emails"
}
}
}
}
}
},
"responses": {
"202": {
"description": "Returns the same data as the request.",
"content": {
"application/json": {
"schema": {
"type": "object",
"properties": {
"addresses": {
"$ref": "#/components/schemas/Addresses"
},
"phones": {
"$ref": "#/components/schemas/Phones"
},
"emails": {
"$ref": "#/components/schemas/Emails"
}
}
}
}
}
}
}
}
},
"/customersBatch": {
"post": {
"summary": "Create customers (recommended method)",
"tags": [
"Customers"
],
"description": "Updated version of the `/customers` endpoint. `/customersBatch` (this endpoint) is recommended to use over `/customers`. The response mirrors the request and also includes the results or errors per account.",
"requestBody": {
"content": {
"application/json": {
"schema": {
"type": "object",
"properties": {
"responses": {
"type": "array",
"items": {
"$ref": "#/components/schemas/CustomerRequest"
}
},
"addDebtsIfPossible": {
"type": "boolean",
"description": "Optional boolean flag to add new debts to customers in the request if they have already been placed."
},
"customersWithAddedDebts": {
"type": "array",
"items": {
"$ref": "#/components/schemas/Customer"
},
"description": "Existing customers who had a new debt added"
}
}
}
}
}
},
"responses": {
"201": {
"description": "In the case where the request succeeds, the response will mirror your request but with an additional `meta` field that can be used in the future to reference the customer objects you have created. If `addDebtsIfPossible` is flagged, the response will mirror your request with new customers, and also include a flag for `isAddedDebt` if an existing customer had another debt placed.\n\nIf there are any duplicate references/transaction ids or any other issues with a placed customer, it will be visible in the response with the flag `isError`.",
"content": {
"application/json": {
"schema": {
"type": "object",
"properties": {
"responses": {
"type": "array",
"items": {
"anyOf": [
{
"type": "object",
"properties": {
"isAddedDebt": {
"type": "boolean",
"example": true
},
"customer": {
"$ref": "#/components/schemas/Customer"
}
}
},
{
"$ref": "#/components/schemas/CustomersBatchError"
}
]
}
}
}
}
}
}
}
}
}
},
"/customers/{customerId}/comments": {
"parameters": [
{
"$ref": "#/components/parameters/CustomerId"
}
],
"post": {
"summary": "Add comments to customer",
"tags": [
"Customers"
],
"description": "Add any notes that the creditor wants t oadd to the `comments` field for a specifc customer. \n\nPlease make sure that comments are only 500 characters long. We will only ingest a certain amount of comments at any given point. \n",
"requestBody": {
"description": "Include an array of the comments to add to the account.",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/Comments"
}
}
}
},
"responses": {
"201": {
"description": "Successful posting"
}
}
}
},
"/customers/{customerId}/unsubscribe": {
"parameters": [
{
"$ref": "#/components/parameters/CustomerId"
}
],
"post": {
"summary": "Remove customer contact information",
"tags": [
"Customers"
],
"description": "This removes any contact information already in the TrueAccord system. If the contact informaiton isn't in the TrueAccord system, you need to upload it and then call this endpoint. \n",
"requestBody": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/ContactInformation"
}
}
}
},
"responses": {
"201": {
"description": "OK"
}
}
}
},
"/customers/{customerId}/debts/": {
"get": {
"summary": "Get debts by customer",
"tags": [
"Debts"
],
"description": "List debts of customer.",
"parameters": [
{
"$ref": "#/components/parameters/CustomerId"
},
{
"$ref": "#/components/parameters/StartTime"
},
{
"$ref": "#/components/parameters/EndTime"
}
],
"responses": {
"200": {
"description": "Lists all customer debts corresponding to the request.",
"content": {
"application/json": {
"schema": {
"type": "object",
"properties": {
"debts": {
"type": "array",
"items": {
"$ref": "#/components/schemas/Debt"
}
}
}
}
}
}
}
}
},
"post": {
"summary": "Add one debt to customer",
"tags": [
"Customers"
],
"description": "Add new debt to customer",
"requestBody": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/Debt"
}
}
}
},
"responses": {
"201": {
"description": "The response will be a debt object with a `meta.id` field which will be the debt permanent unique id. It is recommended to set the transactionId field to an invoice number on your system.",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/Debt"
}
}
}
}
}
}
},
"/customers/{customerId}/debts/{debtId}/retract": {
"post": {
"summary": "Retract debt from customer",
"tags": [
"Debts"
],
"description": "Retract debt from a customer. \n\n**Note: Retractions may result in fees. Please refer to the TOS and your contract or email support@trueaccord.com for more details.**",
"parameters": [
{
"in": "query",
"name": "keepIfOnPaymentPlan",
"schema": {
"type": "boolean"
},
"example": true,
"description": "Default is `true`. Setting this to true will prevent the debt from being retracted if it is on a payment plan."
},
{
"in": "query",
"name": "keepIfHasDispute",
"schema": {
"type": "boolean"
},
"example": true,
"description": "Default is `true`. Setting this to true will prevent the debt from being retracted if it has a dispute."
},
{
"in": "query",
"name": "skipTerminalValidation",
"schema": {
"type": "boolean"
},
"example": false,
"description": "Default is `false`. Setting this to true will allow for retraction of terminal debts."
},
{
"in": "query",
"name": "reason",
"schema": {
"type": "string"
},
"example": "BANKRUPTCY",
"description": "Optional field to add a retraction reason for the debt."
}
],
"responses": {
"201": {
"description": "Responds with debt object.",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/Debt"
}
}
}
}
}
}
},
"/customers/{customerId}/debts/{debtId}/reopen": {
"parameters": [
{
"$ref": "#/components/parameters/CustomerId"
},
{
"$ref": "#/components/parameters/DebtId"
}
],
"post": {
"summary": "Reopen closed debt by customer",
"tags": [
"Debts"
],
"description": "Reopen a closed debt \n\nUse this method if you wish to commence collections on an account that was closed in the past. For example, a settled account that accrued additional debt, or a retracted account that's being sent again to collections.",
"requestBody": {
"description": "The request body is the desired balance of the debt.",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/Debt"
}
}
}
},
"responses": {
"201": {
"description": "Successful update of debt object.",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/Debt"
}
}
}
}
}
}
},
"/customers/{customerId}/debts/{debtId}/totalToCollectBalance": {
"parameters": [
{
"$ref": "#/components/parameters/CustomerId"
},
{
"$ref": "#/components/parameters/DebtId"
}
],
"get": {
"summary": "Get debt total to collect balance",
"tags": [
"Debts"
],
"description": "Read a debt's total to collect balance",
"responses": {
"200": {
"description": "Returns the requested debt object.",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/Debt"
}
}
}
}
}
},
"put": {
"summary": "Update a debt's total to collect balance",
"tags": [
"Debts"
],
"description": "Update a debt's total to collect balance",
"requestBody": {
"description": "Debt object referring to total amount for TrueAccord to collect on before any payments or credits.",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/Debt"
}
}
}
},
"responses": {
"204": {
"description": "Returns the updated debt object.",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/Debt"
}
}
}
}
}
}
},
"/customers/{customerId}/debts/{debtId}/clientFields": {
"parameters": [
{
"$ref": "#/components/parameters/CustomerId"
},
{
"$ref": "#/components/parameters/DebtId"
}
],
"put": {
"summary": "Update client information on a debt",
"tags": [
"Debts"
],
"description": "Update client fields on debt object. \n\n**Warning: Overrides existing fields.**",
"requestBody": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/ClientFields"
}
}
}
},
"responses": {
"204": {
"description": "Returns same client fields as the request.",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/ClientFields"
}
}
}
}
}
}
},
"/customers/{customerId}/debts/{debtId}/outOfStatuteInformation": {
"parameters": [
{
"$ref": "#/components/parameters/CustomerId"
},
{
"$ref": "#/components/parameters/DebtId"
}
],
"put": {
"summary": "Update out of statute information on a debt",
"tags": [
"Debts"
],
"description": "Update out of statute information",
"requestBody": {
"content": {
"application/json": {
"schema": {
"type": "object",
"properties": {
"explicitOutOfStatuteDate": {
"$ref": "#/components/schemas/OutOfStatuteInformation"
},
"explicitOutOfStatuteFlag": {
"type": "boolean",
"example": true,
"description": "Boolean flag that can be used with or without the date for when out of statute date isn't available. Only shoudl be used set to `true` when there is no `explicitOutOfStatuteDate`."
}
}
}
}
}
},
"responses": {
"204": {
"description": "Returns body of the request on successful PUT.",
"content": {
"application/json": {
"schema": {
"type": "object",
"properties": {
"explicitOutOfStatuteDate": {
"$ref": "#/components/schemas/OutOfStatuteInformation"
},
"explicitOutOfStatuteFlag": {
"type": "boolean",
"example": true,
"description": "Boolean flag that can be used with or without the date for when out of statute date isn't available. Only shoudl be used set to `true` when there is no `explicitOutOfStatuteDate`."
}
}
}
}
}
}
}
}
},
"/customers/{customerId}/debts/{debtId}/postChargeOffInformation": {
"parameters": [
{
"$ref": "#/components/parameters/CustomerId"
},
{
"$ref": "#/components/parameters/DebtId"
}
],
"put": {
"summary": "Update post charge off information",
"tags": [
"Debts"
],
"description": "Change post charge off information on a customer's debt.",
"requestBody": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/PostChargeOffInformation"
}
}
}
},
"responses": {
"204": {
"description": "Returns the request body.",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/PostChargeOffInformation"
}
}
}
}
}
}
},
"/customers/{customerId}/debts/{debtId}/defaultDate": {
"parameters": [
{
"$ref": "#/components/parameters/CustomerId"
},
{
"$ref": "#/components/parameters/DebtId"
}
],
"put": {
"summary": "Update default date on debt",
"tags": [
"Debts"
],
"description": "Change default date",
"requestBody": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/Date"
}
}
}
},
"responses": {
"204": {
"description": "Successful update of default date returns the request body.",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/Date"
}
}
}
}
}
}
},
"/customers/{customerId}/debts/{debtId}/pauseCollections": {
"parameters": [
{
"$ref": "#/components/parameters/CustomerId"
},
{
"$ref": "#/components/parameters/DebtId"
}
],
"post": {
"summary": "Pause collections on a debt",
"tags": [
"Debts"
],
"description": "Pause collections on a debt",
"parameters": [
{
"in": "query",
"name": "changeDebtStatus",
"schema": {
"type": "boolean"
},
"description": "Changes debt's status to `Paused` if the parameter value is set to `true`."
}
],
"requestBody": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/PauseCollections"
}
}
}
},
"responses": {
"201": {
"description": "OK"
}
}
}
},
"/customers/{customerId}/debts/{debtId}/unpauseCollections": {
"parameters": [
{
"$ref": "#/components/parameters/CustomerId"
},
{
"$ref": "#/components/parameters/DebtId"
}
],
"post": {
"summary": "Unpause collections on a debt",
"tags": [
"Debts"
],
"description": "Unpause collections on a debt",
"parameters": [
{
"in": "query",
"name": "changeDebtStatus",
"schema": {
"type": "boolean"
},
"description": "When parameter value set to `true`, changes debt's status to last valid status or `New` if no old status exists."
}
],
"requestBody": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/UnpauseCollections"
}
}
}
},
"responses": {
"201": {
"description": "OK"
}
}
}
},
"/customers/{customerId}/debts/{debtId}/payments/": {
"parameters": [
{
"$ref": "#/components/parameters/CustomerId"
},
{
"$ref": "#/components/parameters/DebtId"
}
],
"get": {
"summary": "List payments to a debt",
"tags": [
"Payments"
],
"description": "Returns a list of all payment events that have been made to the debt.",
"parameters": [
{
"$ref": "#/components/parameters/StartTime"
},
{
"$ref": "#/components/parameters/EndTime"
}
],
"responses": {
"200": {
"description": "Object containing array of payments to the debt.",
"content": {
"application/json": {
"schema": {
"type": "object",
"properties": {
"payments": {
"type": "array",
"items": {
"$ref": "#/components/schemas/Payment"
}
}
}
}
}
}
}
}
},
"post": {
"summary": "Report a payment",
"tags": [
"Payments"
],
"description": "Update TrueAccord system with infomration about customer payment. \n\n**NOTE:** For balance adjustments, use the following route instead of this one: `/customers/{customerId}/debts/{debtId}/totalToCollectBalance`\n",
"requestBody": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/PaymentRequest"
}
}
}
},
"responses": {
"201": {
"description": "Same as request object with a `meta` field and `paymentTimestamp` if `paymentTimestamp` wasn't included in request.",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/Payment"
}
}
}
}
}
}
},
"/debts/{debtId}/paymentPlans/": {
"parameters": [
{
"$ref": "#/components/parameters/DebtId"
}
],
"get": {
"summary": "Get payment plans for a debt",
"description": "Lists all payment payment plans for a debt.",
"tags": [
"Payments"
],
"parameters": [
{
"in": "query",
"name": "from",
"schema": {
"$ref": "#/components/schemas/TimeStamp"
},
"description": "Display only results created after the `from` value."