-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathmx_platform_api.yml
More file actions
5466 lines (5466 loc) · 158 KB
/
mx_platform_api.yml
File metadata and controls
5466 lines (5466 loc) · 158 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:
AccountNumberResponse:
properties:
account_guid:
example: ACT-06d7f44b-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
institution_number:
example: '123'
nullable: true
type: string
loan_guarantor:
example: Donnie Darko
nullable: true
type: string
loan_reference_number:
example: '12345678'
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: '987654321'
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
AccountNumbersResponseBody:
properties:
account_numbers:
items:
"$ref": "#/components/schemas/AccountNumberResponse"
type: array
pagination:
"$ref": "#/components/schemas/PaginationResponse"
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
apr:
example: 1.0
nullable: true
type: number
apy:
example: 1.0
nullable: true
type: number
available_balance:
example: 1000.0
nullable: true
type: number
available_credit:
example: 1000.0
nullable: true
type: number
balance:
example: 1000.0
nullable: true
type: number
cash_balance:
example: 1000.0
nullable: true
type: number
cash_surrender_value:
example: 1000.0
nullable: true
type: number
created_at:
example: '2016-10-13T17:57:37.000Z'
nullable: true
type: string
credit_limit:
example: 100.0
nullable: true
type: number
currency_code:
example: USD
nullable: true
type: string
day_payment_is_due:
example: 20
nullable: true
type: integer
death_benefit:
example: 1000
nullable: true
type: integer
guid:
example: ACT-06d7f44b-caae-0f6e-1384-01f52e75dcb1
nullable: true
type: string
holdings_value:
example: 1000.0
nullable: true
type: number
id:
example: '1040434698'
nullable: true
type: string
imported_at:
example: '2015-10-13T17:57:37.000Z'
nullable: true
type: string
institution_code:
example: chase
nullable: true
type: string
insured_name:
example: Frodo Baggins
nullable: true
type: string
interest_rate:
example: 1.0
nullable: true
type: number
is_closed:
example: false
nullable: true
type: boolean
is_hidden:
example: false
nullable: true
type: boolean
last_payment:
example: 100.0
nullable: true
type: number
last_payment_at:
example: '2015-10-13T17:57:37.000Z'
nullable: true
type: string
loan_amount:
example: 1000.0
nullable: true
type: number
matures_on:
example: '2015-10-13T17:57:37.000Z'
nullable: true
type: string
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_payment:
example: 10.0
nullable: true
type: number
name:
example: Test account 2
nullable: true
type: string
nickname:
example: My Checking
nullable: true
type: string
original_balance:
example: 10.0
nullable: true
type: number
pay_out_amount:
example: 10.0
nullable: true
type: number
payment_due_at:
example: '2015-10-13T17:57:37.000Z'
nullable: true
type: string
payoff_balance:
example: 10.0
nullable: true
type: number
premium_amount:
example: 1.0
nullable: true
type: number
routing_number:
example: '68899990000000'
nullable: true
type: string
started_on:
example: '2015-10-13T17:57:37.000Z'
nullable: true
type: string
subtype:
example: NONE
nullable: true
type: string
total_account_value:
example: 1.0
nullable: true
type: number
type:
example: SAVINGS
nullable: true
type: string
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
AccountUpdateRequest:
properties:
is_hidden:
example: false
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
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:
category:
"$ref": "#/components/schemas/CategoryResponse"
type: object
CategoryUpdateRequest:
properties:
metadata:
example: some metadata
type: string
name:
example: Web shopping
type: string
type: object
CategoryUpdateRequestBody:
properties:
category:
"$ref": "#/components/schemas/CategoryUpdateRequest"
type: object
ChallengeResponse:
properties:
field_name:
example: Who is this guy?
nullable: true
type: string
guid:
example: CRD-ce76d2e3-86bd-ec4a-ec52-eb53b5194bf5
nullable: true
type: string
image_data:
example: Who is this guy?
nullable: true
type: string
image_options:
items:
"$ref": "#/components/schemas/ImageOptionResponse"
type: array
label:
example: Who is this guy?
nullable: true
type: string
options:
items:
"$ref": "#/components/schemas/OptionResponse"
type: array
type:
example: IMAGE_DATA
nullable: true
type: string
type: object
ChallengesResponseBody:
properties:
challenges:
items:
"$ref": "#/components/schemas/ChallengeResponse"
type: array
pagination:
"$ref": "#/components/schemas/PaginationResponse"
type: object
ConnectWidgetRequest:
properties:
client_redirect_url:
example: https://mx.com
type: string
color_scheme:
example: light
type: string
current_institution_code:
example: chase
type: string
current_member_guid:
example: MBR-7c6f361b-e582-15b6-60c0-358f12466b4b
type: string
disable_institution_search:
example: false
type: boolean
include_identity:
example: false
type: boolean
include_transactions:
example: true
type: boolean
is_mobile_webview:
example: true
type: boolean
mode:
example: aggregation
type: string
ui_message_version:
example: 4
type: integer
ui_message_webview_url_scheme:
example: mx
type: string
update_credentials:
example: false
type: boolean
type: object
ConnectWidgetRequestBody:
properties:
config:
"$ref": "#/components/schemas/ConnectWidgetRequest"
type: object
ConnectWidgetResponse:
properties:
connect_widget_url:
example: https://int-widgets.moneydesktop.com/md/connect/jb1rA14m85tw2lyvpgfx4gc6d3Z8z8Ayb8
nullable: true
type: string
guid:
example: USR-fa7537f3-48aa-a683-a02a-b18940482f54
nullable: true
type: string
type: object
ConnectWidgetResponseBody:
properties:
user:
"$ref": "#/components/schemas/ConnectWidgetResponse"
type: object
CredentialRequest:
properties:
guid:
example: CRD-27d0edb8-1d50-5b90-bcbc-be270ca42b9f
type: string
value:
example: password
type: string
type: object
CredentialResponse:
properties:
display_order:
example: 1
nullable: true
type: integer
field_name:
example: LOGIN
nullable: true
type: string
field_type:
example: TEXT
nullable: true
type: string
guid:
example: CRD-1ec152cd-e628-e81a-e852-d1e7104624da
nullable: true
type: string
label:
example: Username
nullable: true
type: string
type:
example: TEXT
nullable: true
type: string
type: object
CredentialsResponseBody:
properties:
credentials:
items:
"$ref": "#/components/schemas/CredentialResponse"
type: array
pagination:
"$ref": "#/components/schemas/PaginationResponse"
type: object
EnhanceTransactionResponse:
properties:
amount:
example: 21.33
nullable: true
type: number
categorized_by:
example: 13
nullable: true
type: integer
category:
example: Rental Car & Taxi
nullable: true
type: string
category_guid:
example: CAT-9588eaad-90a4-bb5c-66c8-1812503d0db8
nullable: true
type: string
described_by:
example: 6
nullable: true
type: integer
description:
example: Uber
nullable: true
type: string
extended_transaction_type:
example: partner_transaction_type
nullable: true
type: string
id:
example: ID-123
nullable: true
type: string
is_bill_pay:
example: false
nullable: true
type: boolean
is_direct_deposit:
example: false
nullable: true
type: boolean
is_expense:
example: false
nullable: true
type: boolean
is_fee:
example: false
nullable: true
type: boolean
is_income:
example: false
nullable: true
type: boolean
is_international:
example: false
nullable: true
type: boolean
is_overdraft_fee:
example: false
nullable: true
type: boolean
is_payroll_advance:
example: false
nullable: true
type: boolean
is_subscription:
example: false
nullable: true
type: boolean
memo:
example: Additional-information*on_transaction
nullable: true
type: string
merchant_category_code:
example: 4121
nullable: true
type: integer
merchant_guid:
example: MCH-14f25b63-ef47-a38e-b2b6-d02b280b6e4e
nullable: true
type: string
merchant_location_guid:
example: MCL-00024e59-18b5-4d79-b879-2a7896726fea
nullable: true
type: string
original_description:
example: ubr* pending.uber.com
nullable: true
type: string
type:
example: DEBIT
nullable: true
type: string
type: object
EnhanceTransactionsRequest:
properties:
amount:
example: 21.33
type: number
description:
example: ubr* pending.uber.com
type: string
extended_transaction_type:
example: partner_transaction_type
type: string
id:
example: ID-123
type: string
memo:
example: Additional-information*on_transaction
type: string
merchant_category_code:
example: 4121
type: integer
type:
example: DEBIT
type: string
required:
- description
- id
type: object
EnhanceTransactionsRequestBody:
properties:
transactions:
items:
"$ref": "#/components/schemas/EnhanceTransactionsRequest"
type: array
type: object
EnhanceTransactionsResponseBody:
properties:
transactions:
items:
"$ref": "#/components/schemas/EnhanceTransactionResponse"
type: array
type: object
HoldingResponse:
properties:
account_guid:
example: ACT-06d7f44b-caae-0f6e-1384-01f52e75dcb1
nullable: true
type: string
cost_basis:
example: 827.0
nullable: true
type: number
created_at:
example: '2015-04-13T18:01:23.000Z'
nullable: true
type: string
currency_code:
example: USD
nullable: true
type: string
cusip:
example: 18383M878
nullable: true
type: string
daily_change:
example: 2.5
nullable: true
type: number
description:
example: Guggenheim Defensive Equity ETF
nullable: true
type: string
guid:
example: HOL-d65683e8-9eab-26bb-bcfd-ced159c9abe2
nullable: true
type: string
holding_type:
example: MONEY_MARKET
nullable: true
type: string
holding_type_id:
example: 1
nullable: true
type: integer
id:
example: ID-123
nullable: true
type: string
market_value:
example: 989.5
nullable: true
type: number
member_guid:
example: MBR-d65683e8-9eab-26bb-bcfd-ced159c9abe
nullable: true
type: string
metadata:
example: metadata
nullable: true
type: string
purchase_price:
example: 26.3
nullable: true
type: number
shares:
example: 6.0
nullable: true
type: number
symbol:
example: DEF
nullable: true
type: string
updated_at:
example: '2015-04-13T18:01:23.000Z'
nullable: true
type: string
user_guid:
example: USR-743e5d7f-1116-28fa-5de1-d3ba02e41d8d
nullable: true
type: string
type: object
HoldingResponseBody:
properties:
holding:
"$ref": "#/components/schemas/HoldingResponse"
type: object
HoldingsResponseBody:
properties:
holdings:
items:
"$ref": "#/components/schemas/HoldingResponse"
type: array
pagination:
"$ref": "#/components/schemas/PaginationResponse"
type: object
ImageOptionResponse:
properties:
data_uri:
example: data:image/png;base64,iVBORw0KGgoAAAANSUh ... more image data ...
nullable: true
type: string
label:
example: IMAGE_1
nullable: true
type: string
value:
example: image_data
nullable: true
type: string
type: object
InstitutionResponse:
properties:
code:
example: chase
nullable: true
type: string
instructional_text:
example: Some instructional text <a href="https://example.url.chase.com/instructions"
id="instructional_text">for end users</a>.
nullable: true
type: string
medium_logo_url:
example: https://content.moneydesktop.com/storage/MD_Assets/Ipad%20Logos/100x100/default_100x100.png
nullable: true
type: string
name:
example: Chase Bank
nullable: true
type: string
small_logo_url:
example: https://content.moneydesktop.com/storage/MD_Assets/Ipad%20Logos/50x50/default_50x50.png
nullable: true
type: string
supports_account_identification:
example: true
nullable: true
type: boolean
supports_account_statement:
example: true
nullable: true
type: boolean
supports_account_verification:
example: true
nullable: true
type: boolean
supports_oauth:
example: true
nullable: true
type: boolean
supports_transaction_history:
example: true
nullable: true
type: boolean
url:
example: https://www.chase.com
nullable: true
type: string
type: object
InstitutionResponseBody:
properties:
institution:
"$ref": "#/components/schemas/InstitutionResponse"
type: object
InstitutionsResponseBody:
properties:
institutions:
items:
"$ref": "#/components/schemas/InstitutionResponse"
type: array
pagination:
"$ref": "#/components/schemas/PaginationResponse"
type: object
ManagedAccountCreateRequest:
properties:
account_number:
example: '5366'
type: string
apr:
example: 1.0
type: number
apy:
example: 1.0
type: number
available_balance:
example: 1000.0
type: number
available_credit:
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
day_payment_is_due:
example: 20
type: integer
death_benefit:
example: 1000
type: integer
id:
example: '1040434698'
type: string
interest_rate:
example: 1.0
type: number
is_closed:
example: false
type: boolean
is_hidden:
example: false
type: boolean
last_payment:
example: 100.0
type: number
last_payment_at:
example: '2015-10-13T17:57:37.000Z'
type: string
loan_amount:
example: 1000.0
type: number
matures_on:
example: '2015-10-13T17:57:37.000Z'
type: string
metadata:
example: some metadata
type: string
minimum_balance:
example: 100.0
type: number
minimum_payment:
example: 10.0
type: number
name:
example: Test account 2
type: string
nickname:
example: Swiss Account
type: string
original_balance:
example: 10.0
type: number
payment_due_at:
example: '2015-10-13T17:57:37.000Z'
type: string
payoff_balance:
example: 10.0
type: number
routing_number:
example: '68899990000000'
type: string
started_on:
example: '2015-10-13T17:57:37.000Z'
type: string
subtype:
example: NONE
type: string
type:
example: SAVINGS
type: string
required:
- balance
- name
- type
type: object
ManagedAccountCreateRequestBody:
properties:
account:
"$ref": "#/components/schemas/ManagedAccountCreateRequest"
type: object
ManagedAccountUpdateRequest:
properties:
account_number:
example: '5366'
type: string
apr:
example: 1.0
type: number
apy:
example: 1.0
type: number
available_balance:
example: 1000.0
type: number
available_credit: