-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfdx-resource-api-openapi.yaml
More file actions
2091 lines (2075 loc) · 69.7 KB
/
Copy pathfdx-resource-api-openapi.yaml
File metadata and controls
2091 lines (2075 loc) · 69.7 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
openapi: 3.0.3
info:
title: Mastercard Developer Hub for FDX APIs Fdx Resource API
description: FDX Mock Resource Server API reference for developers
termsOfService: https://mastercard.com
contact:
name: API Support
url: https://developer.mastercard.com/support
email: apisupport@mastercard.com
license:
name: Mastercard Product
url: https://mastercard.com
version: 1.0.0
servers:
- url: 'http://localhost:9090'
description: Localhost URL
security:
- apiKey: []
tags:
- name: Application Check Controller
description: health check and check the status application
- name: Consent
description: Return consent and save consent for user.
- name: Data Resource APIs
description: "Return list of account, account details,transactions,contact details, payments info and statements details of user."
- name: Upload Data
description: Upload accounts and transaction for user.
- name: User APIs
description: Return user response.
paths:
/consent/{consentId}:
get:
tags:
- Consent
summary: Mastercard Developer Hub for FDX APIs Get Consent by consent Id
description: Return particular consent response by consent id.
operationId: getConsent
parameters:
- name: consentId
in: path
required: true
schema:
type: string
example: b39bf7e9-92ae-4649-a1f0-87983285fe1
- name: Authorization
in: header
description: This field indicate the Access Token id
required: true
schema:
type: string
example: Token Id
responses:
'200':
description: OK
content:
application/json:
schema:
$ref: '#/components/schemas/AccountConsent'
example:
userId: fdxuser
allAccountIds:
- '10001'
- '20001'
- '3746272'
- '5326884'
accountIds:
- '10001'
consentShareDurationSeconds: 600
consentId: eb1a3f4b-9974-4c80-8364-c4ec8c6ff9f7
'401':
description: Unauthorized
content:
application/json:
schema:
type: string
example:
code: '401'
error: We have encountered some internal error in processing your request.
errorDescription: Request validation failed. Either authorization code is blank or invalid.
put:
tags:
- Consent
summary: Mastercard Developer Hub for FDX APIs Update Consent by consent Id
description: Return updated consent response.
operationId: updateConsent
parameters:
- name: consentId
in: path
description: This field indicate the Consent ID
required: true
schema:
type: string
example: eb1a3f4b-9974-4c80-8364-c4ec8c6ff9f7
- name: Authorization
in: header
description: Access Token id
required: true
schema:
type: string
example: Token Id
requestBody:
required: true
content:
application/json:
schema:
type: object
properties:
accountIds:
description: This field indicate account Id which consent given by user
type: array
items:
type: number
example: 20001
example:
- 20001
consentShareDurationSeconds:
description: This field indicate consent Expiry date
type: number
example: 600
userId:
description: This field indicate user Id
type: string
example: fdxuser
examples:
Update Consent:
value:
accountIds:
- 20001
consentShareDurationSeconds: 600
userId: fdxuser
responses:
'200':
description: OK
content:
application/json:
schema:
$ref: '#/components/schemas/AccountConsentResp'
example:
customerId: fdxuser
consentId: eb1a3f4b-9974-4c80-8364-c4ec8c6ff9f7
endDate: 1720607740194
'401':
description: Unauthorized
content:
application/json:
schema:
type: string
example:
code: '401'
error: We have encountered some internal error in processing your request.
errorDescription: Request validation failed. Either authorization code is blank or invalid.
/user:
post:
tags:
- User APIs
summary: Mastercard Developer Hub for FDX APIs Save user
description: Return saved user response.
operationId: saveUser
parameters:
- name: Authorization
in: header
description: This field indicate the Access Token id
required: true
schema:
type: string
example: Token Id
requestBody:
content:
application/json:
schema:
type: object
properties:
password:
description: This field indicate plain password
type: string
example: password
userId:
description: This field indicate user id
type: string
example: fdxuser1
examples:
SaveUser:
value:
password: password
userId: fdxuser1
required: true
responses:
'200':
description: OK
content:
'*/*':
schema:
$ref: '#/components/schemas/FdxUser'
/upload/addTransactions:
post:
tags:
- Upload Data
summary: Mastercard Developer Hub for FDX APIs add transactions details for user Id
description: Return transactions response.
operationId: addTransactions
requestBody:
required: true
content:
application/json:
schema:
type: array
items:
type: object
properties:
accountCategory:
type: string
example: DEPOSIT_ACCOUNT
accountId:
type: string
example: '10002'
amount:
type: number
example: 0.01
checkNumber:
type: number
example: 45400222
debitCreditMemo:
type: string
example: CREDIT
description:
type: string
example: INTEREST PAYMENT
payee:
type: string
example: Test User
postedTimestamp:
type: string
example: '2019-07-31T12:00:00.000Z'
status:
type: string
example: POSTED
transactionId:
type: string
example: '12455'
transactionTimestamp:
type: string
example: '2019-07-31T12:00:00.000Z'
transactionType:
type: string
example: POSCREDIT
example:
- accountCategory: DEPOSIT_ACCOUNT
accountId: '10002'
amount: 0.01
description: INTEREST PAYMENT
postedTimestamp: '2019-07-31T12:00:00.000Z'
status: POSTED
transactionId: '12455'
transactionTimestamp: '2019-07-31T12:00:00.000Z'
transactionType: POSCREDIT
- accountCategory: DEPOSIT_ACCOUNT
accountId: '10002'
amount: 0.03
description: INTEREST PAYMENT
postedTimestamp: '2019-02-28T12:00:00.000Z'
status: POSTED
transactionId: '45322'
transactionTimestamp: '2019-02-28T12:00:00.000Z'
transactionType: POSCREDIT
- accountCategory: DEPOSIT_ACCOUNT
accountId: '10002'
amount: -300
description: 'ALLY BANK TRANSFER WEB ID: 3770527921'
postedTimestamp: '2019-02-26T12:00:00.000Z'
status: POSTED
transactionId: '4322777'
transactionTimestamp: '2019-02-26T12:00:00.000Z'
transactionType: POSDEBIT
- accountCategory: DEPOSIT_ACCOUNT
accountId: '10002'
amount: 101.72
checkNumber: 45400222
debitCreditMemo: CREDIT
description: VENMO CASHOUT
payee: Test User
postedTimestamp: '2019-02-26T12:00:00.000Z'
status: POSTED
transactionId: '5705141948'
transactionTimestamp: '2019-02-26T12:00:00.000Z'
transactionType: POSCREDIT
examples:
Add Transactions:
value:
- accountCategory: DEPOSIT_ACCOUNT
accountId: '10002'
amount: 0.01
description: INTEREST PAYMENT
postedTimestamp: '2019-07-31T12:00:00.000Z'
status: POSTED
transactionId: '12455'
transactionTimestamp: '2019-07-31T12:00:00.000Z'
transactionType: POSCREDIT
- accountCategory: DEPOSIT_ACCOUNT
accountId: '10002'
amount: 0.03
description: INTEREST PAYMENT
postedTimestamp: '2019-02-28T12:00:00.000Z'
status: POSTED
transactionId: '45322'
transactionTimestamp: '2019-02-28T12:00:00.000Z'
transactionType: POSCREDIT
- accountCategory: DEPOSIT_ACCOUNT
accountId: '10002'
amount: -300
description: 'ALLY BANK TRANSFER WEB ID: 3770527921'
postedTimestamp: '2019-02-26T12:00:00.000Z'
status: POSTED
transactionId: '4322777'
transactionTimestamp: '2019-02-26T12:00:00.000Z'
transactionType: POSDEBIT
- accountCategory: DEPOSIT_ACCOUNT
accountId: '10002'
amount: 101.72
checkNumber: 45400222
debitCreditMemo: CREDIT
description: VENMO CASHOUT
payee: Test User
postedTimestamp: '2019-02-26T12:00:00.000Z'
status: POSTED
transactionId: '5705141948'
transactionTimestamp: '2019-02-26T12:00:00.000Z'
transactionType: POSCREDIT
responses:
'200':
description: OK
content:
'*/*':
schema:
$ref: '#/components/schemas/DataUploadResponsePojo'
/upload/addAccount:
post:
tags:
- Upload Data
summary: Mastercard Developer Hub for FDX APIs add account for user Id
description: Return accounts response.
operationId: addAccount
parameters:
- name: userId
in: query
required: true
schema:
type: string
example: fdxUser
requestBody:
required: true
content:
application/json:
schema:
type: array
items:
type: object
properties:
accountCategory:
type: string
example: DEPOSIT_ACCOUNT
accountId:
type: string
example: '10002'
accountNumber:
type: string
example: '7000003223'
accountNumberDisplay:
type: string
example: CHECKING
accountType:
type: string
example: CHECKING
annualPercentageYield:
type: number
example: 0.45
availableBalance:
type: number
example: 4984.46
balanceAsOf:
type: string
example: 2020-12-07T01:06:15.649-0500
balanceType:
type: string
example: ASSET
currency:
type: object
properties:
currencyCode:
type: string
example: USD
currencyRate:
nullable: true
example:
originalCurrencyCode:
type: string
example: USD
currentBalance:
type: number
example: 4984.46
description:
type: string
example: My Checking Acc XXXX3223
displayName:
type: string
example: '******3223'
fiAttributes:
type: array
items:
type: object
properties:
name:
type: string
example: interestPaidLastYear
value:
type: string
example: '14.08'
example:
- name: interestPaidLastYear
value: '14.08'
- name: interestPayoutFrequency
value: Annually (And At Maturity)
interestYtd:
type: number
example: 14.15
lastActivityDate:
type: string
example: 2020-11-09T00:00:00.000-0500
lineOfBusiness:
type: string
example: RETAIL
maturityDate:
type: string
example: 2020-11-09T00:00:00.000-0500
nickname:
type: string
example: My Checking Acc XXXX3223
openingDayBalance:
type: number
example: 500
productName:
type: string
example: Cash Management
routingTransitNumber:
type: string
example: '256074974'
status:
type: string
example: OPEN
transactionsIncluded:
type: boolean
example: false
example:
- accountCategory: DEPOSIT_ACCOUNT
accountId: '10002'
accountNumber: '7000003223'
accountNumberDisplay: CHECKING
accountType: CHECKING
annualPercentageYield: 0.45
availableBalance: 4984.46
balanceAsOf: 2020-12-07T01:06:15.649-0500
balanceType: ASSET
currency:
currencyCode: USD
currencyRate:
originalCurrencyCode: USD
currentBalance: 4984.46
description: My Checking Acc XXXX3223
displayName: '******3223'
fiAttributes:
- name: interestPaidLastYear
value: '14.08'
- name: interestPayoutFrequency
value: Annually (And At Maturity)
interestYtd: 14.15
lastActivityDate: 2020-11-09T00:00:00.000-0500
lineOfBusiness: RETAIL
maturityDate: 2020-11-09T00:00:00.000-0500
nickname: My Checking Acc XXXX3223
openingDayBalance: 500
productName: Cash Management
routingTransitNumber: '256074974'
status: OPEN
transactionsIncluded: false
examples:
Add accounts:
value:
- accountCategory: DEPOSIT_ACCOUNT
accountId: '10002'
accountNumber: '7000003223'
accountNumberDisplay: CHECKING
accountType: CHECKING
annualPercentageYield: 0.45
availableBalance: 4984.46
balanceAsOf: 2020-12-07T01:06:15.649-0500
balanceType: ASSET
currency:
currencyCode: USD
currencyRate:
originalCurrencyCode: USD
currentBalance: 4984.46
description: My Checking Acc XXXX3223
displayName: '******3223'
fiAttributes:
- name: interestPaidLastYear
value: '14.08'
- name: interestPayoutFrequency
value: Annually (And At Maturity)
interestYtd: 14.15
lastActivityDate: 2020-11-09T00:00:00.000-0500
lineOfBusiness: RETAIL
maturityDate: 2020-11-09T00:00:00.000-0500
nickname: My Checking Acc XXXX3223
openingDayBalance: 500
productName: Cash Management
routingTransitNumber: '256074974'
status: OPEN
transactionsIncluded: false
responses:
'200':
description: OK
content:
application/json:
schema:
$ref: '#/components/schemas/DataUploadResponsePojo'
/consent:
post:
tags:
- Consent
summary: Mastercard Developer Hub for FDX APIs Register Consent
description: Save user consent into db
operationId: registerConsent
parameters:
- name: Authorization
in: header
description: This field indicate the Access Token id
required: true
schema:
type: string
example: Token Id
requestBody:
content:
application/json:
schema:
type: object
properties:
accountIds:
description: This field indicate account Id which consent given by user
type: array
items:
type: number
example: 1001
example:
- 10001
consentShareDurationSeconds:
description: This field indicate consent Expiry date
type: number
example: 600
userId:
description: This field indicate user Id
type: string
example: fdxuser
examples:
Register Consent:
value:
accountIds:
- 10001
consentShareDurationSeconds: 600
userId: fdxuser
required: true
responses:
'200':
description: OK
content:
application/json:
schema:
$ref: '#/components/schemas/AccountConsentResp'
example:
customerId: fdxuser
consentId: eb1a3f4b-9974-4c80-8364-c4ec8c6ff9f7
endDate: 1720607740194
'401':
description: Unauthorized
content:
application/json:
schema:
type: string
example:
code: '401'
error: We have encountered some internal error in processing your request.
errorDescription: Request validation failed. Either authorization code is blank or invalid.
/user/{userId}:
get:
tags:
- User APIs
summary: Mastercard Developer Hub for FDX APIs Get user by user Id
description: Return user response.
operationId: getUser
parameters:
- name: Authorization
in: header
description: This field indicate the Access Token id
required: true
schema:
type: string
example: Token Id
- name: userId
in: path
description: This field indicate the user ID
required: true
schema:
type: string
example: '2456777'
responses:
'200':
description: OK
content:
'*/*':
schema:
$ref: '#/components/schemas/FdxUser'
/startupStatus:
get:
tags:
- Application Check Controller
summary: Mastercard Developer Hub for FDX APIs Status check
description: status check for application
operationId: getStartupStatus
responses:
'200':
description: OK
content:
'*/*':
schema:
type: string
/shutdown:
get:
tags:
- Application Check Controller
summary: Mastercard Developer Hub for FDX APIs shutdown application
description: Return the status of shutdown.
operationId: shutdown
responses:
'200':
description: OK
content:
'*/*':
schema:
type: string
/livenessProbe:
get:
tags:
- Application Check Controller
summary: Mastercard Developer Hub for FDX APIs liveness check
description: liveness check for application
operationId: validateLiveness
responses:
'200':
description: OK
content:
'*/*':
schema:
type: string
/health:
get:
tags:
- Application Check Controller
summary: Mastercard Developer Hub for FDX APIs health check
description: health check for application
operationId: getHealth
responses:
'200':
description: OK
content:
'*/*':
schema:
type: string
/fdx/v6/accounts:
get:
tags:
- Data Resource APIs
summary: Mastercard Developer Hub for FDX APIs Get all accounts of user.
description: Return list of user accounts.
operationId: getAccountsList
parameters:
- name: Authorization
in: header
description: This field indicate the Access Token id
required: true
schema:
type: string
example: Token Id
responses:
'200':
description: OK
content:
application/json:
schema:
$ref: '#/components/schemas/Accounts'
example:
page:
nextOffset: '2'
total: 3
links:
next:
href: /accounts?offSet=2&limit=10
accounts:
- accountCategory: DEPOSIT_ACCOUNT
accountId: '10001'
nickname: My Checking Acc XXXX3223
status: OPEN
balanceAsOf: '2017-11-05T13:15:30.751Z'
currentBalance: 13300.35
openingDayBalance: 500
- accountCategory: DEPOSIT_ACCOUNT
accountId: '10002'
nickname: My Checking Acc XXXX4443
status: OPEN
balanceAsOf: '2017-11-05T13:15:30.751Z'
currentBalance: 332.22
openingDayBalance: 100
- accountCategory: LOAN_ACCOUNT
accountId: '20001'
nickname: My Mortgage Acc XXXX9979
description: My Mortgage Acc XXXX9979
status: OPEN
balanceAsOf: '2017-11-05T13:15:30.751Z'
principalBalance: 133000.35
loanTerm: 30
nextPaymentDate: '2017-12-01'
nextPaymentAmount: 2333.32
'401':
description: Unauthorized
content:
application/json:
schema:
type: string
example:
code: '401'
error: We have encountered some internal error in processing your request.
errorDescription: Request validation failed. Either authorization code is blank or invalid.
/fdx/v6/accounts/{accountId}:
get:
tags:
- Data Resource APIs
summary: Mastercard Developer Hub for FDX APIs Get account details by account id.
description: Return in-depth account details for particular account.
operationId: getAccountsDetails
parameters:
- name: Authorization
in: header
description: This field indicate the Access Token id
required: true
schema:
type: string
example: Token Id
- name: accountId
in: path
description: This field indicate the account ID
required: true
schema:
type: string
example: '10001'
responses:
'200':
description: OK
content:
application/json:
schema:
$ref: '#/components/schemas/AccountDescriptor'
example:
accountId: '10001'
accountCategory: DEPOSIT_ACCOUNT
accountType: CHECKING
displayName: '******3223'
status: OPEN
productName: Cash Management
currency:
currencyRate:
currencyCode: USD
originalCurrencyCode: USD
interestYtd: 14.15
maturityDate: 2020-11-09T00:00:00.000-0500
annualPercentageYield: 0.45
description: My Checking Acc XXXX3223
nickname: My Checking Acc XXXX3223
lineOfBusiness: RETAIL
accountNumber: '7000003223'
accountNumberDisplay: '3223'
routingTransitNumber: '256074974'
balanceType: ASSET
lastActivityDate: 2020-11-09T00:00:00.000-0500
transactionsIncluded: false
balanceAsOf: 2020-12-07T01:06:15.649-0500
currentBalance: 4984.46
availableBalance: 4984.46
openingDayBalance: 500
fiAttributes:
- name: interestPaidLastYear
value: '14.08'
- name: interestPayoutFrequency
value: Annually (And At Maturity)
'401':
description: Unauthorized
content:
application/json:
schema:
type: string
example:
code: '401'
error: We have encountered some internal error in processing your request.
errorDescription: Request validation failed. Either authorization code is blank or invalid.
/fdx/v6/accounts/{accountId}/transactions:
get:
tags:
- Data Resource APIs
summary: Mastercard Developer Hub for FDX APIs Get transaction details by account id.
description: Return list of transaction details for particular account.
operationId: getTransactions
parameters:
- name: Authorization
in: header
description: This field indicate the Access Token id
required: true
schema:
type: string
example: Token Id
- name: accountId
in: path
description: This field indicate the account ID
required: true
schema:
type: string
example: '10001'
- name: startTime
in: header
description: This field indicate the startTime transaction
required: false
schema:
type: string
example: 18-04-2024
- name: endTime
in: header
description: This field indicate the endTime of transaction
required: false
schema:
type: string
example: 30-07-2024
responses:
'200':
description: OK
content:
application/json:
schema:
$ref: '#/components/schemas/Transactions'
example:
page:
total: 4
transactions:
- accountId: '10001'
accountCategory: DEPOSIT_ACCOUNT
transactionId: '12455'
postedTimestamp: '2019-07-31T12:00:00.000Z'
transactionTimestamp: '2019-07-31T12:00:00.000Z'
description: INTEREST PAYMENT
status: POSTED
amount: 0.01
transactionType: POSCREDIT
- accountId: '10001'
accountCategory: DEPOSIT_ACCOUNT
transactionId: '45322'
postedTimestamp: '2019-02-28T12:00:00.000Z'
transactionTimestamp: '2019-02-28T12:00:00.000Z'
description: INTEREST PAYMENT
status: POSTED
amount: 0.03
transactionType: POSCREDIT
- accountId: '10001'
accountCategory: DEPOSIT_ACCOUNT
transactionId: '4322777'
postedTimestamp: '2019-02-26T12:00:00.000Z'
transactionTimestamp: '2019-02-26T12:00:00.000Z'
description: 'ALLY BANK TRANSFER WEB ID: 3770527921'
status: POSTED
amount: -300
transactionType: POSDEBIT
- accountId: '10001'
accountCategory: DEPOSIT_ACCOUNT
transactionId: '5705141948'
postedTimestamp: '2019-02-26T12:00:00.000Z'
transactionTimestamp: '2019-02-26T12:00:00.000Z'
description: VENMO CASHOUT
debitCreditMemo: CREDIT
status: POSTED
amount: 101.72
transactionType: POSCREDIT
checkNumber: 45400222
payee: Test User
'401':
description: Unauthorized
content:
application/json:
schema:
type: string
example:
code: '401'
error: We have encountered some internal error in processing your request.
errorDescription: Request validation failed. Either authorization code is blank or invalid.
/fdx/v6/accounts/{accountId}/statements:
get:
tags:
- Data Resource APIs
summary: Mastercard Developer Hub for FDX APIs Get statements details by account id.
description: Return list of statements details for particular account.
operationId: getStatements
parameters:
- name: Authorization
in: header
description: This field indicate the Access Token id
required: true
schema:
type: string
example: Token Id
- name: accountId
in: path
description: This field indicate the account ID
required: true
schema:
type: string
example: '10001'
responses:
'200':
description: OK
content:
'*/*':
schema:
$ref: '#/components/schemas/Statements'
/fdx/v6/accounts/{accountId}/statements/{statementId}:
get:
tags:
- Data Resource APIs
summary: Mastercard Developer Hub for FDX APIs Get statements details by account id and statement Id.
description: Return statements response for particular account in pdf format.
operationId: getStatementsByStatementId
parameters:
- name: Authorization
in: header
description: This field indicate the Access Token id
required: true
schema:
type: string
example: Token Id
- name: accountId
in: path
description: This field indicate the account ID
required: true
schema:
type: string
example: '10001'
- name: statementId
in: path
description: This field indicate the Statement ID
required: true
schema:
type: string
example: '30001'
responses:
'200':
description: OK
content:
'*/*':
schema:
type: object
/fdx/v6/accounts/{accountId}/payment-networks:
get:
tags:
- Data Resource APIs
summary: Mastercard Developer Hub for FDX APIs Get payment networks details by account id.
description: Return payment networks details for particular account.
operationId: getPaymentNetworksDetails
parameters:
- name: Authorization
in: header
description: This field indicate the Access Token id
required: true
schema:
type: string
example: Token Id
- name: accountId
in: path
description: This field indicate the account ID
required: true