-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathmx_platform_api.yml
More file actions
9452 lines (9452 loc) · 282 KB
/
mx_platform_api.yml
File metadata and controls
9452 lines (9452 loc) · 282 KB
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
---
components:
schemas:
AccountCreateRequest:
properties:
account_subtype:
example: "PERSONAL"
type: string
account_type:
example: SAVINGS
type: string
apr:
example: 1.0
type: number
apy:
example: 1.0
type: number
available_balance:
example: 1000.0
type: number
balance:
example: 1000.0
type: number
cash_surrender_value:
example: 1000.0
type: number
credit_limit:
example: 100.0
type: number
currency_code:
example: USD
type: string
death_benefit:
example: 1000
type: integer
interest_rate:
example: 1.0
type: number
is_business:
example: false
type: boolean
is_closed:
example: false
type: boolean
is_hidden:
example: false
type: boolean
loan_amount:
example: 1000.0
type: number
metadata:
example: some metadata
type: string
name:
example: Test account 2
type: string
nickname:
example: Swiss Account
type: string
original_balance:
example: 10.0
type: number
property_type:
example: VEHICLE
type: string
skip_webhook:
example: true
type: boolean
required:
- name
- account_type
type: object
AccountCreateRequestBody:
properties:
account:
"$ref": "#/components/schemas/AccountCreateRequest"
type: object
AccountNumberResponse:
properties:
account_guid:
example: ACT-06d7f45b-caae-0f6e-1384-01f52e75dcb1
nullable: true
type: string
account_number:
example: 10001
nullable: true
type: string
guid:
example: ACN-8899832e-e5b4-42cd-aa25-bbf1dc889a8f
nullable: true
type: string
loan_guarantor:
example: U.S. DEPARTMENT OF EDUCATION
nullable: true
type: string
loan_reference_number:
example: 123456789012345
nullable: true
type: string
institution_number:
example: 123
nullable: true
type: string
member_guid:
example: MBR-7c6f361b-e582-15b6-60c0-358f12466b4b
nullable: true
type: string
passed_validation:
example: true
nullable: true
type: boolean
routing_number:
example: 68899990000000
nullable: true
type: string
sequence_number:
example: 1-01
nullable: true
type: string
transit_number:
example: 12345
nullable: true
type: string
user_guid:
example: USR-fa7537f3-48aa-a683-a02a-b18940482f54
nullable: true
type: string
type: object
AccountOwnerResponse:
properties:
account_guid:
example: ACT-06d7f44b-caae-0f6e-1384-01f52e75dcb1
nullable: true
type: string
address:
example: 123 This Way
nullable: true
type: string
city:
example: Middlesex
nullable: true
type: string
country:
example: US
nullable: true
type: string
email:
example: donnie@darko.co
nullable: true
type: string
first_name:
example: Donnie
nullable: true
type: string
guid:
example: ACO-63dc7714-6fc0-4aa2-a069-c06cdccd1af9
nullable: true
type: string
last_name:
example: Darko
nullable: true
type: string
member_guid:
example: MBR-7c6f361b-e582-15b6-60c0-358f12466b4b
nullable: true
type: string
owner_name:
example: Donnie Darko
nullable: true
type: string
phone:
example: 555-555-5555
nullable: true
type: string
postal_code:
example: 00000-0000
nullable: true
type: string
state:
example: VA
nullable: true
type: string
user_guid:
example: USR-fa7537f3-48aa-a683-a02a-b18940482f54
nullable: true
type: string
type: object
AccountOwnersResponseBody:
properties:
account_owners:
items:
"$ref": "#/components/schemas/AccountOwnerResponse"
type: array
pagination:
"$ref": "#/components/schemas/PaginationResponse"
type: object
AccountResponse:
properties:
account_number:
example: "5366"
nullable: true
type: string
account_number_set_by:
example: 1
nullable: true
type: integer
account_ownership:
example: "INDIVIDUAL"
nullable: true
type: string
annuity_policy_to_date:
example: "2016-10-13T17:57:37.000Z"
nullable: true
type: string
annuity_provider:
example: "Metlife"
nullable: true
type: string
annuity_term_year:
example: 2048
nullable: true
type: integer
apr:
example: 1.0
nullable: true
type: number
apr_set_by:
example: 1
nullable: true
type: integer
apy:
example: 1.0
nullable: true
type: number
apy_set_by:
example: 1
nullable: true
type: integer
available_balance:
example: 1000.0
nullable: true
type: number
available_balance_set_by:
example: 1
nullable: true
type: integer
available_credit:
example: 1000.0
nullable: true
type: number
available_credit_set_by:
example: 1
nullable: true
type: integer
balance:
example: 10000.0
nullable: true
type: number
balance_set_by:
example: 1
nullable: true
type: integer
calculated_apr:
example: 21.66409
nullable: true
type: number
cash_balance:
example: 1000.0
nullable: true
type: number
cash_balance_set_by:
example: 1
nullable: true
type: integer
cash_surrender_value:
example: 1000.0
nullable: true
type: number
cash_surrender_value_set_by:
example: 1
nullable: true
type: integer
created_at:
example: "2023-07-25T17:14:46Z"
nullable: false
type: string
credit_limit:
example: 100.0
nullable: true
type: number
credit_limit_set_by:
example: 1
nullable: true
type: integer
currency_code:
example: USD
nullable: true
type: string
currency_code_set_by:
example: 1
nullable: true
type: integer
day_payment_is_due:
example: 20
nullable: true
type: integer
day_payment_is_due_set_by:
example: 1
nullable: true
type: integer
death_benefit:
example: 1000
nullable: true
type: integer
death_benefit_set_by:
example: 1
nullable: true
type: integer
federal_insurance_status:
example: INSURED
nullable: true
type: string
feed_account_number:
example: "5366"
nullable: true
type: string
feed_account_subtype:
example: 1
nullable: true
type: integer
feed_account_type:
example: 1
nullable: true
type: integer
feed_apr:
example: 1.0
nullable: true
type: number
feed_apy:
example: 1.0
nullable: true
type: number
feed_available_balance:
example: 1000.0
nullable: true
type: number
feed_balance:
example: 1000.0
nullable: true
type: number
feed_cash_balance:
example: 1000.0
nullable: true
type: number
feed_cash_surrender_value:
example: 1000.0
nullable: true
type: number
feed_credit_limit:
example: 100.0
nullable: true
type: number
feed_currency_code:
example: "USD"
nullable: true
type: string
feed_day_payment_is_due:
example: 20
nullable: true
type: integer
feed_death_benefit:
example: 1000
nullable: true
type: integer
feed_holdings_value:
example: 1000.0
nullable: true
type: number
feed_interest_rate:
example: 1.0
nullable: true
type: number
feed_is_closed:
example: false
nullable: true
type: boolean
feed_last_payment:
example: 100.0
nullable: true
type: number
feed_last_payment_at:
example: "2023-07-25T17:14:46Z"
nullable: true
type: string
feed_loan_amount:
example: 1000.0
nullable: true
type: number
feed_matures_on:
example: "2015-10-13T17:57:37.000Z"
nullable: true
type: string
feed_minimum_balance:
example: 100.0
nullable: true
type: number
feed_minimum_payment:
example: 10.0
nullable: true
type: number
feed_name:
example: "Test account 2"
nullable: true
type: string
feed_nickname:
example: "My Checking"
nullable: true
type: string
feed_original_balance:
example: 10.0
nullable: true
type: number
feed_payment_due_at:
example: "2025-02-13T17:57:37.000Z"
nullable: true
type: string
feed_payoff_balance:
example: 10.0
nullable: true
type: number
feed_routing_number:
example: "68899990000000"
nullable: true
type: string
feed_started_on:
example: "2020-10-13T17:57:37.000Z"
nullable: true
type: string
feed_statement_balance:
example: 100.0
nullable: true
type: number
feed_total_account_value:
example: 100.0
nullable: true
type: number
guid:
example: "ACT-06d7f44b-caae-0f6e-1384-01f52e75dcb1"
nullable: true
type: string
holdings_value:
example: 1000.0
nullable: true
type: number
holdings_value_set_by:
example: 1
nullable: true
type: integer
id:
example: "1040434698"
nullable: true
type: string
imported_at:
example: "2015-10-13T17:57:37.000Z"
nullable: true
type: string
institution_code:
example: "3af3685e-05d9-7060-359f-008d0755e993"
nullable: true
type: string
institution_guid:
example: "INS-12a3b-4c5dd6-1349-008d0755e993"
nullable: true
type: string
insured_name:
example: "Tommy Shelby"
nullable: true
type: string
interest_rate:
example: 1.0
nullable: true
type: number
interest_rate_set_by:
example: 1
nullable: true
type: integer
is_closed:
example: false
nullable: true
type: boolean
is_closed_set_by:
example: 1
nullable: true
type: integer
is_hidden:
example: false
nullable: true
type: boolean
is_manual:
example: false
nullable: true
type: boolean
last_payment:
example: 100.0
nullable: true
type: number
last_payment_set_by:
example: 1
nullable: true
type: integer
last_payment_at:
example: "2023-07-25T17:14:46Z"
nullable: true
type: string
last_payment_at_set_by:
example: 1
nullable: true
type: integer
loan_amount:
example: 1000.0
nullable: true
type: number
loan_amount_set_by:
example: 1
nullable: true
type: integer
margin_balance:
example: 1000.0
nullable: true
type: number
matures_on:
example: "2015-10-13T17:57:37.000Z"
nullable: true
type: string
matures_on_set_by:
example: 1
nullable: true
type: integer
member_guid:
example: "MBR-7c6f361b-e582-15b6-60c0-358f12466b4b"
nullable: true
type: string
member_id:
example: "member123"
nullable: true
type: string
member_is_managed_by_user:
example: false
nullable: true
type: boolean
metadata:
example: "some metadata"
nullable: true
type: string
minimum_balance:
example: 100.0
nullable: true
type: number
minimum_balance_set_by:
example: 1
nullable: true
type: integer
minimum_payment:
example: 10.0
nullable: true
type: number
minimum_payment_set_by:
example: 1
nullable: true
type: integer
name:
example: "Test account 2"
nullable: true
type: string
name_set_by:
example: 1
nullable: true
type: integer
nickname:
example: "My Checking"
nullable: true
type: string
nickname_set_by:
example: 1
nullable: true
type: integer
original_balance:
example: 10.0
nullable: true
type: number
original_balance_set_by:
example: 1
nullable: true
type: integer
pay_out_amount:
example: 10.0
nullable: true
type: number
payment_due_at:
example: "2015-10-13T17:57:37.000Z"
nullable: true
type: string
payment_due_at_set_by:
example: 1
nullable: true
type: integer
payoff_balance:
example: 10.0
nullable: true
type: number
payoff_balance_set_by:
example: 1
nullable: true
type: integer
premium_amount:
example: 3900
nullable: true
type: number
property_type:
example: "VEHICLE"
nullable: true
type: string
routing_number:
example: "68899990000000"
nullable: true
type: string
started_on:
example: "2015-10-13T17:57:37.000Z"
nullable: true
type: string
started_on_set_by:
example: 1
nullable: true
type: integer
statement_balance:
example: 1000.50
nullable: true
type: number
statement_balance_set_by:
example: 1
nullable: true
type: integer
subtype:
example: "NONE"
nullable: true
type: string
subtype_set_by:
example: 1
nullable: true
type: integer
today_ugl_amount:
example: 1000.50
nullable: true
type: number
today_ugl_percentage:
example: 6.9
nullable: true
type: number
total_account_value:
example: 1.0
nullable: true
type: number
total_account_value_set_by:
example: 1
nullable: true
type: integer
total_account_value_ugl:
example: 1.0
nullable: true
type: number
type:
example: "SAVINGS"
nullable: true
type: string
type_set_by:
example: 1
nullable: true
type: integer
updated_at:
example: "2016-10-13T18:08:00.000Z"
nullable: true
type: string
user_guid:
example: "USR-fa7537f3-48aa-a683-a02a-b18940482f54"
nullable: true
type: string
user_id:
example: 'user123'
nullable: true
type: string
type: object
AccountResponseBody:
properties:
account:
"$ref": "#/components/schemas/AccountResponse"
type: object
AccountNumbersResponseBody:
properties:
account_numbers:
items:
"$ref": "#/components/schemas/AccountNumberResponse"
type: array
pagination:
"$ref": "#/components/schemas/PaginationResponse"
type: object
AccountUpdateRequest:
properties:
account_subtype:
example: "PERSONAL"
type: string
account_type:
example: SAVINGS
type: string
apr:
example: 1.0
type: number
apy:
example: 1.0
type: number
available_balance:
example: 1000.0
type: number
balance:
example: 1000.0
type: number
cash_surrender_value:
example: 1000.0
type: number
credit_limit:
example: 100.00
type: number
currency_code:
example: USD
type: string
death_benefit:
example: 1000
type: integer
interest_rate:
example: 1.0
type: number
is_business:
example: false
type: boolean
is_closed:
example: false
type: boolean
is_hidden:
example: false
type: boolean
loan_amount:
example: 1000.0
type: number
metadata:
example: some metadata
type: string
name:
example: Test account 2
type: string
nickname:
example: Swiss Account
type: string
original_balance:
example: 10.0
type: number
property_type:
example: VEHICLE
type: string
skip_webhook:
example: true
type: boolean
type: object
AccountUpdateRequestBody:
properties:
account:
"$ref": "#/components/schemas/AccountUpdateRequest"
type: object
AccountsResponseBody:
properties:
accounts:
items:
"$ref": "#/components/schemas/AccountResponse"
type: array
pagination:
"$ref": "#/components/schemas/PaginationResponse"
type: object
AuthorizationCodeRequest:
properties:
scope:
example:
user-guid:USR-101ad774-288b-44ed-ad16-da87d522ea20 member-guid:MBR-54feffb9-8474-47bd-8442-de003910113a
account-guid:ACT-32a64160-582a-4f00-ab34-5f49cc35ed35 read-protected
nullable: true
type: string
type: object
AuthorizationCodeRequestBody:
properties:
authorization_code:
"$ref": "#/components/schemas/AuthorizationCodeRequest"
type: object
AuthorizationCodeResponse:
properties:
code:
example: 9nN-9D8_4Z3WYazx7-zXfmqsD3jwgL_2W927Sb3otI
nullable: true
type: string
type: object
AuthorizationCodeResponseBody:
properties:
authorization_code:
items:
"$ref": "#/components/schemas/AuthorizationCodeResponse"
type: object
BudgetResponse:
properties:
amount:
description: A goal amount set by the user for a category's transaction total during a month.
example: 153.0
type: number
category_guid:
description: Unique identifier for the budget category. Defined by MX.
example: CAT-bd56d35a-a9a7-6e10-66c1-5b9cc1b6c81a
type: string
nullable: false
created_at:
description: Date and time the budget was created, represented in ISO 8601 format with timestamp.
example: 2018-10-18T19:51:26+00:00
type: string
guid:
description: Unique identifier for the budget. Defined by MX.
example: BGT-6ca0e3ef-c65e-4655-8b5a-275a3c19c21d
type: string
is_exceeded:
description: If the budget has been exceeded, this field will be true. Otherwise, this field will be false.
example: true
type: boolean
is_off_track:
description: If the budget is off track, this field will be true. Otherwise, this field will be false.
example: true
type: boolean
metadata:
description: Additional information a partner can store on the budget.
example: some metadata
nullable: true
type: string
name:
description: The name of the budget that is visible to the user (ie "Food", "Bills", "Entertainment", etc).
example: Food & Dining
type: string
nullable: true
off_track_percentage:
description: The percentage amount of off track spending. (Deprecated).
nullable: true
type: number
parent_guid:
description: Unique identifier for the parent budget. Defined by MX.
nullable: true
type: string
percent_spent:
description: The percentage of a budget that has been spent during the current calendar month Calculated as the transaction total divided by the amount and then multiplied by 100.A value of zero will be returned when `amount` is zero.
example: 1276.34
nullable: true
type: number
projected_spending:
description: The projected amount of spending for the budget.
example: 3562.4
type: number
revision:
description: The revision number of this budget record.
example: 561
type: integer
transaction_total:
description: The cumulative amount of all transactions under the budget.
example: 1952.8
updated_at:
description: Date and time the budget was updated, represented in ISO 8601 format with timestamp.
example: 2022-06-14T21:17:11+00:00
user_guid:
description: Unique identifier for the user. Defined by MX.
example: USR-11141024-90b3-1bce-cac9-c06ced52ab4c
BudgetCreateRequest:
properties:
category_guid:
example: CAT-bd56d35a-a9a7-6e10-66c1-5b9cc1b6c81a
description: Unique identifier of the category.
type: string
parent_guid:
example: BGT-6be44a91-e105-f68a-4770-8c7c0a5c9778
description: Unique identifier of the parent budget. This is only required when creating a budget on a sub-category.
type: string
amount:
example: 1000
description: Amount of the budget.
type: integer
metadata:
example: Additional information
description: Additional information a partner can store on the budget.
type: string
skip_webhook:
example: true
description: When set to true, this parameter will prevent a webhook from being triggered by the request.
type: boolean
required:
- category_guid
- parent_guid
type: object
BudgetUpdateRequest:
properties:
amount:
example: 1000
description: Amount of the budget.
type: integer
metadata:
example: Additional information
description: Additional information a partner can store on the budget.
type: string
skip_webhook:
example: true
description: When set to true, this parameter will prevent a webhook from being triggered by the request.
type: boolean
type: object
BudgetCreateRequestBody:
properties:
budget:
"$ref": "#/components/schemas/BudgetCreateRequest"
type: object
BudgetUpdateRequestBody:
properties:
budget:
"$ref": "#/components/schemas/BudgetUpdateRequest"
type: object
BudgetResponseBody:
properties:
budget:
"$ref": "#/components/schemas/BudgetResponse"
type: object
CategoriesResponseBody:
properties:
categories:
items:
"$ref": "#/components/schemas/CategoryResponse"
type: array
pagination:
"$ref": "#/components/schemas/PaginationResponse"
type: object
CategoryCreateRequest:
properties:
metadata:
example: some metadata
type: string
name:
example: Online Shopping
type: string
parent_guid:
example: CAT-aad51b46-d6f7-3da5-fd6e-492328b3023f
type: string
required:
- name
type: object
CategoryCreateRequestBody:
properties:
category:
"$ref": "#/components/schemas/CategoryCreateRequest"
type: object
CategoryResponse:
properties:
created_at:
example: "2015-04-13T18:01:23.000Z"
nullable: true
type: string
guid:
example: CAT-7829f71c-2e8c-afa5-2f55-fa3634b89874
nullable: true
type: string
is_default:
example: true
nullable: true
type: boolean
is_income:
example: false
nullable: true
type: boolean
metadata:
example: some metadata
nullable: true
type: string
name:
example: Auto Insurance
nullable: true
type: string
parent_guid:
example: CAT-7829f71c-2e8c-afa5-2f55-fa3634b89874
nullable: true
type: string
updated_at:
example: "2015-05-13T18:01:23.000Z"
nullable: true
type: string
type: object
CategoryResponseBody:
properties: