-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsdk-scheme-adapter-backend-v2_1_0-openapi3-snippets.yaml
2837 lines (2814 loc) · 88 KB
/
sdk-scheme-adapter-backend-v2_1_0-openapi3-snippets.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
openapi: 3.0.1
info:
title: Mojaloop SDK Backend API
description: >
API specification for the SDK Backend API.
To be implemented by the Digital Financial Service Provider (DFSP) to work
in tandem with the Mojaloop SDK (`mojaloop/sdk-scheme-adapter`).
This API is not to be confused with the Mojaloop SDK's Inbound or Outbound
API.
TODO: More explanation and links about the SDK adapter's Inbound and
Outbound API.
**Note on terminology:** The term "Switch" is equal to the term "Hub", and
the term "FSP" is equal to the term "DFSP".
license:
name: Apache License Version 2.0, January 2004
url: http://www.apache.org/licenses/
version: 1.0.0
paths:
/:
get:
operationId: BackendHealthCheck
responses:
'200':
description: Returns empty body if the service is running.
summary: Health check endpoint.
/bulkQuotes:
post:
operationId: BackendBulkQuotesPost
requestBody:
content:
application/json:
schema:
$ref: '#/components/schemas/bulkQuoteRequest'
description: Incoming request for a bulk quotation.
responses:
'200':
content:
application/json:
schema:
$ref: '#/components/schemas/bulkQuoteResponse'
description: A response to the bulk quote request.
'400':
$ref: '#/components/responses/400'
'500':
$ref: '#/components/responses/500'
summary: Requests a bulk quote.
tags:
- BulkQuotes
/bulkQuotes/{idValue}:
get:
operationId: BackendBulkQuotesGet
parameters:
- $ref: '#/components/parameters/idValue'
responses:
'200':
content:
application/json:
schema:
$ref: '#/components/schemas/bulkQuoteResponse'
description: Response containing details of the requested bulk quote.
'400':
$ref: '#/components/responses/400'
'404':
$ref: '#/components/responses/404'
'500':
$ref: '#/components/responses/500'
summary: >-
Requests information relating to a bulk quote identified by the
specified identifier value.
tags:
- BulkQuotes
/bulkTransactions/{bulkTransactionId}:
put:
description: >-
The HTTP request `PUT /bulkTransactions/{bulkTransactionId}` is used to
amend information regarding a bulk transaction, i.e. when
autoAcceptParty or autoAcceptQuote is false then the payer need to
provide confirmation to proceed with further processing of the request.
The `{bulkTransactionId}` in the URI should contain the
`bulkTransactionId` that was used for the creation of the bulk transfer.
operationId: BackendBulkTransactionsPut
parameters:
- $ref: '#/components/parameters/bulkTransactionId'
requestBody:
content:
application/json:
schema:
$ref: '#/components/schemas/bulkTransactionResponse'
responses:
'202':
description: Bulk transaction information successfully amended.
'400':
$ref: '#/components/responses/400'
'500':
$ref: '#/components/responses/500'
summary: Callbacks for the bulk transaction request.
tags:
- BulkTransactionsPut
/requestToPay/{transactionRequestId}:
put:
description: >-
It is used to notify the DFSP backend about the status of the
requestToPayTransfer.
operationId: RequestToPayPut
parameters:
- $ref: '#/components/parameters/transactionRequestId'
requestBody:
content:
application/json:
schema:
$ref: '#/components/schemas/requestToPayCallback'
responses:
'200':
description: OK
'400':
$ref: '#/components/responses/400'
'500':
$ref: '#/components/responses/500'
summary: Callback for the requestToPay request.
tags:
- RequestToPayPut
/bulkTransfers:
post:
operationId: BackendBulkTransfersPost
requestBody:
content:
application/json:
schema:
$ref: '#/components/schemas/bulkTransferRequest'
description: An incoming bulk transfer request.
responses:
'200':
content:
application/json:
schema:
$ref: '#/components/schemas/bulkTransferResponse'
description: The bulk transfer was accepted.
'400':
$ref: '#/components/responses/400'
'500':
$ref: '#/components/responses/500'
summary: >-
Execute bulk transfer of funds from an external account to internal
accounts.
tags:
- BulkTransfers
/bulkTransfers/{idValue}:
get:
operationId: BackendBulkTransfersGet
parameters:
- $ref: '#/components/parameters/idValue'
responses:
'200':
content:
application/json:
schema:
$ref: '#/components/schemas/bulkTransferResponse'
description: Response containing details of the requested bulk transfer.
'400':
$ref: '#/components/responses/400'
'404':
$ref: '#/components/responses/404'
'500':
$ref: '#/components/responses/500'
summary: >-
Requests information relating to a bulk transfer identified by the
specified identifier value.
tags:
- BulkTransfers
/otp/{transactionRequestId}:
get:
operationId: BackendOtpGet
parameters:
- $ref: '#/components/parameters/transactionRequestId'
responses:
'200':
content:
application/json:
schema:
$ref: '#/components/schemas/otpDetails'
description: Response containing details of the OTP.
'400':
$ref: '#/components/responses/400'
'404':
$ref: '#/components/responses/404'
'500':
$ref: '#/components/responses/500'
summary: Requests OTP.
tags:
- OTP
/participants/{idType}/{idValue}:
get:
description: >-
The HTTP request `GET /participants/{idType}/{idValue}` is used to find
out in which FSP the requested party, defined by `{idType}` and
`{idValue}`, is located.
operationId: BackendParticipantsGetByTypeAndID
parameters:
- $ref: '#/components/parameters/idType'
- $ref: '#/components/parameters/idValue'
responses:
'200':
content:
application/json:
schema:
$ref: '#/components/schemas/participantsResponse'
description: Response containing details of the requested party.
'400':
$ref: '#/components/responses/400'
'404':
$ref: '#/components/responses/404'
'500':
$ref: '#/components/responses/500'
summary: >-
Asks for the identifier (fspId) of the scheme participant (FSP) that can
handle transfers for the specified identifier type and value.
tags:
- Participants
/participants/{idType}/{idValue}/{idSubValue}:
get:
description: >-
The HTTP request `GET /participants/{idType}/{idValue}/{idSubValue}` is
used to find out in which FSP the requested party, defined by
`{idType}`, `{idValue}` and `{idSubValue}` is located.
operationId: BackendParticipantsGetByTypeIDAndSubId
parameters:
- $ref: '#/components/parameters/idType'
- $ref: '#/components/parameters/idValue'
- $ref: '#/components/parameters/idSubValue'
responses:
'200':
content:
application/json:
schema:
$ref: '#/components/schemas/participantsResponse'
description: Response containing details of the requested party.
'400':
$ref: '#/components/responses/400'
'404':
$ref: '#/components/responses/404'
'500':
$ref: '#/components/responses/500'
summary: >-
Asks for the identifier (fspId) of the scheme participant (FSP) that can
handle transfers for the specified identifier type and value.
tags:
- Participants
/parties/{idType}/{idValue}:
get:
description: >-
The HTTP request `GET /parties/{idType}/{idValue}` is used to look up
information regarding the requested transfer party, identified by
`{idType}` and `{idValue}`.
operationId: BackendPartiesGetByTypeAndID
parameters:
- $ref: '#/components/parameters/idType'
- $ref: '#/components/parameters/idValue'
responses:
'200':
content:
application/json:
schema:
$ref: '#/components/schemas/transferParty'
description: Response containing details of the requested party.
'400':
$ref: '#/components/responses/400'
'404':
$ref: '#/components/responses/404'
'500':
$ref: '#/components/responses/500'
summary: >-
Requests information relating to a transfer party identified by the
specified identifier type and value.
tags:
- Parties
/parties/{idType}/{idValue}/{idSubValue}:
get:
description: >-
The HTTP request `GET /parties/{idType}/{idValue}/{idSubValue}` is used
to look up information regarding the requested transfer party,
identified by `{idType}`, `{idValue}` and `{idSubValue}`.
operationId: BackendPartiesGetByTypeIdAndSubId
parameters:
- $ref: '#/components/parameters/idType'
- $ref: '#/components/parameters/idValue'
- $ref: '#/components/parameters/idSubValue'
responses:
'200':
content:
application/json:
schema:
$ref: '#/components/schemas/transferParty'
description: Response containing details of the requested party.
'400':
$ref: '#/components/responses/400'
'404':
$ref: '#/components/responses/404'
'500':
$ref: '#/components/responses/500'
summary: >-
Requests information relating to a transfer party identified by the
specified identifier type, value and subId value.
tags:
- Parties
/quoterequests:
post:
description: >-
The HTTP request `POST /quoterequests` is used to request the creation
of a quote for the provided financial transaction.
operationId: BackendQuoteRequest
requestBody:
content:
application/json:
schema:
$ref: '#/components/schemas/quoteRequest'
description: Request for a transfer quotation.
responses:
'200':
content:
application/json:
schema:
$ref: '#/components/schemas/quoteResponse'
description: A response to the transfer quotation request.
'400':
$ref: '#/components/responses/400'
'500':
$ref: '#/components/responses/500'
summary: Requests a quote for the specified transfer.
tags:
- Quotes
/transactionrequests:
post:
operationId: BackendTransactionRequest
requestBody:
content:
application/json:
schema:
$ref: '#/components/schemas/transactionRequest'
description: Request for Transaction Request.
responses:
'200':
content:
application/json:
schema:
$ref: '#/components/schemas/transactionRequestResponse'
description: A response to the transfer transaction request.
'400':
$ref: '#/components/responses/400'
'500':
$ref: '#/components/responses/500'
summary: Transaction request that supports pull based transfers.
tags:
- TransactionRequest
/transfers:
post:
description: >-
The HTTP request `POST /transfers` is used to request the creation of a
transfer for the transfer party.
operationId: BackendTransfersPost
requestBody:
content:
application/json:
schema:
$ref: '#/components/schemas/transferRequest'
description: An incoming transfer request.
responses:
'200':
content:
application/json:
schema:
$ref: '#/components/schemas/transferResponse'
description: The transfer was accepted.
'400':
$ref: '#/components/responses/400'
'500':
$ref: '#/components/responses/500'
summary: Transfers funds from an external account to an internal account.
tags:
- Transfers
/transfers/{transferId}:
get:
description: >-
The HTTP request `GET /transfers/{transferId}` is used to get
information regarding a transfer created or requested earlier. The
`{transferId}` in the URI should contain the `transferId` that was used
for the creation of the transfer.
operationId: BackendTransfersGet
parameters:
- $ref: '#/components/parameters/transferId'
responses:
'200':
content:
application/json:
schema:
$ref: '#/components/schemas/transferDetailsResponse'
description: The transfer was accepted.
'500':
$ref: '#/components/responses/500'
summary: Retrieves information for a specific transfer.
tags:
- Transfers
put:
description: >-
The HTTP request `PUT /transfers/{transferId}` is used to receive
notification for transfer being fulfiled when the FSP is a Payee.
operationId: BackendTransfersPut
parameters:
- $ref: '#/components/parameters/transferId'
requestBody:
content:
application/json:
schema:
$ref: '#/components/schemas/fulfilNotification'
description: An incoming notification for fulfiled transfer.
responses:
'200':
description: The notification was accepted.
'500':
$ref: '#/components/responses/500'
summary: Receive notification for a specific transfer.
tags:
- Transfers
/fxQuotes:
post:
description: >-
The HTTP request `POST /fxQuotes` is used to ask an FXP backend to
provide a quotation for a currency conversion.
summary: Calculate FX quote
tags:
- Fx
operationId: FxQuotesPost
requestBody:
description: Details of the FX quote request.
required: true
content:
application/json:
schema:
$ref: '#/components/schemas/FxQuotesPostBackendRequest'
responses:
'200':
description: Successful response.
content:
application/json:
schema:
$ref: '#/components/schemas/FxQuotesPostBackendResponse'
'400':
$ref: '#/components/responses/400'
'500':
$ref: '#/components/responses/500'
/fxTransfers:
post:
description: >-
The HTTP request `POST /fxTransfers` is used to ask an FXP backend to
confirm the execution of an agreed currency conversion.
summary: Perform FX transfer
tags:
- Fx
operationId: FxTransfersPost
requestBody:
description: Details of the FX transfer request.
required: true
content:
application/json:
schema:
$ref: '#/components/schemas/FxTransfersPostBackendRequest'
responses:
'200':
description: Successful response.
content:
application/json:
schema:
$ref: '#/components/schemas/FxTransfersPostBackendResponse'
'400':
$ref: '#/components/responses/400'
'500':
$ref: '#/components/responses/500'
/fxTransfers/{commitRequestId}:
put:
description: >-
The HTTP request `PUT /fxTransfers/{commitRequestId}` is used to notify
an FXP backend about the status of currency conversion.
summary: FX Commit Notification
tags:
- Fx
operationId: FxTransfersById
requestBody:
description: Status of the FX transfer.
required: true
content:
application/json:
schema:
$ref: '#/components/schemas/FxTransfersPutBackendRequest'
responses:
'200':
$ref: '#/components/responses/200'
'400':
$ref: '#/components/responses/400'
'500':
$ref: '#/components/responses/500'
components:
parameters:
idSubValue:
description: >-
A sub-identifier of the party identifier, or a sub-type of the party
identifier's type. For example, `PASSPORT`, `DRIVING_LICENSE`.
in: path
name: idSubValue
required: true
schema:
type: string
idType:
description: The type of the party identifier. For example, `MSISDN`, `PERSONAL_ID`.
in: path
name: idType
required: true
schema:
type: string
idValue:
description: The identifier value.
in: path
name: idValue
required: true
schema:
type: string
transactionRequestId:
in: path
name: transactionRequestId
required: true
schema:
$ref: '#/components/schemas/transactionRequestId'
transferId:
in: path
name: transferId
required: true
schema:
type: string
bulkTransactionId:
name: bulkTransactionId
in: path
required: true
schema:
$ref: '#/components/schemas/CorrelationId'
description: >-
Identifier of the bulk transaction to continue as returned in the
response to a `POST /bulkTransaction` request.
schemas:
DateOfBirth:
title: DateofBirth (type Date)
type: string
pattern: >-
^(?:[1-9]\d{3}-(?:(?:0[1-9]|1[0-2])-(?:0[1-9]|1\d|2[0-8])|(?:0[13-9]|1[0-2])-(?:29|30)|(?:0[13578]|1[02])-31)|(?:[1-9]\d(?:0[48]|[2468][048]|[13579][26])|(?:[2468][048]|[13579][26])00)-02-29)$
description: Date of Birth of the Party.
example: '1966-06-16'
FirstName:
title: FirstName
type: string
minLength: 1
maxLength: 128
pattern: >-
^(?!\s*$)[\p{L}\p{gc=Mark}\p{digit}\p{gc=Connector_Punctuation}\p{Join_Control}
.,''-]{1,128}$
description: First name of the Party (Name Type).
example: Henrik
FspId:
title: FspId
type: string
minLength: 1
maxLength: 32
description: FSP identifier.
IndividualQuote:
description: Data model for individual quote in a bulk quote request.
properties:
amount:
$ref: '#/components/schemas/money'
amountType:
$ref: '#/components/schemas/amountType'
currency:
$ref: '#/components/schemas/currency'
feesAmount:
$ref: '#/components/schemas/money'
feesCurrency:
$ref: '#/components/schemas/currency'
initiator:
$ref: '#/components/schemas/initiator'
initiatorType:
$ref: '#/components/schemas/initiatorType'
note:
description: An optional note associated with the quote.
maxLength: 128
minLength: 1
type: string
quoteId:
$ref: '#/components/schemas/quoteId'
subScenario:
$ref: '#/components/schemas/TransactionSubScenario'
to:
$ref: '#/components/schemas/transferParty'
transactionId:
$ref: '#/components/schemas/transactionId'
transactionType:
$ref: '#/components/schemas/transactionType'
required:
- quoteId
- transactionId
- to
- amountType
- amount
- currency
- transactionType
- initiator
- initiatorType
type: object
IndividualQuoteResultFailed:
description: Data model for failed individual quote in a bulk quote response.
properties:
errorResponse:
$ref: '#/components/schemas/errorResponse'
quoteId:
$ref: '#/components/schemas/quoteId'
required:
- quoteId
- errorResponse
type: object
IndividualQuoteResultSuccess:
description: Data model for successful individual quote in a bulk quote response.
properties:
payeeFspCommissionAmount:
$ref: '#/components/schemas/money'
payeeFspCommissionAmountCurrency:
$ref: '#/components/schemas/currency'
payeeFspFeeAmount:
$ref: '#/components/schemas/money'
payeeFspFeeAmountCurrency:
$ref: '#/components/schemas/currency'
payeeReceiveAmount:
$ref: '#/components/schemas/money'
payeeReceiveAmountCurrency:
$ref: '#/components/schemas/currency'
quoteId:
$ref: '#/components/schemas/quoteId'
transferAmount:
$ref: '#/components/schemas/money'
transferAmountCurrency:
$ref: '#/components/schemas/currency'
required:
- quoteId
type: object
IndividualTransfer:
description: Data model for individual transfer in a bulk transfer request.
properties:
amount:
$ref: '#/components/schemas/money'
amountType:
$ref: '#/components/schemas/amountType'
currency:
$ref: '#/components/schemas/currency'
feesAmount:
$ref: '#/components/schemas/money'
feesCurrency:
$ref: '#/components/schemas/currency'
initiator:
$ref: '#/components/schemas/initiator'
initiatorType:
$ref: '#/components/schemas/initiatorType'
note:
description: An optional note associated with the quote.
maxLength: 128
minLength: 1
type: string
subScenario:
$ref: '#/components/schemas/TransactionSubScenario'
to:
$ref: '#/components/schemas/transferParty'
transactionType:
$ref: '#/components/schemas/transactionType'
transferId:
$ref: '#/components/schemas/transferId'
required:
- transferId
- amount
- currency
type: object
IndividualTransferResult:
description: Data model for individual transfer in a bulk transfer response.
properties:
errorResponse:
$ref: '#/components/schemas/errorResponse'
extensionList:
$ref: '#/components/schemas/extensionList'
transferId:
$ref: '#/components/schemas/transferId'
required:
- transferId
type: object
LastName:
title: LastName
type: string
minLength: 1
maxLength: 128
pattern: >-
^(?!\s*$)[\p{L}\p{gc=Mark}\p{digit}\p{gc=Connector_Punctuation}\p{Join_Control}
.,''-]{1,128}$
description: Last name of the Party (Name Type).
example: Karlsson
MerchantClassificationCode:
title: MerchantClassificationCode
type: string
pattern: ^[\d]{1,4}$
description: >-
A limited set of pre-defined numbers. This list would be a limited set
of numbers identifying a set of popular merchant types like School Fees,
Pubs and Restaurants, Groceries, etc.
MiddleName:
title: MiddleName
type: string
minLength: 1
maxLength: 128
pattern: >-
^(?!\s*$)[\p{L}\p{gc=Mark}\p{digit}\p{gc=Connector_Punctuation}\p{Join_Control}
.,''-]{1,128}$
description: Middle name of the Party (Name Type).
example: Johannes
amountCurrency:
description: Object containing Amount and Currency of the transfer.
properties:
amount:
$ref: '#/components/schemas/money'
currency:
$ref: '#/components/schemas/currency'
required:
- amount
- currency
type: object
amountType:
enum:
- SEND
- RECEIVE
type: string
bulkQuoteId:
description: A Mojaloop API bulk quote identifier (UUID).
pattern: >-
^[0-9a-f]{8}-[0-9a-f]{4}-[1-5][0-9a-f]{3}-[89ab][0-9a-f]{3}-[0-9a-f]{12}$
type: string
bulkQuoteRequest:
description: A request for a bulk quote.
properties:
bulkQuoteId:
$ref: '#/components/schemas/bulkQuoteId'
expiration:
$ref: '#/components/schemas/timestamp'
from:
$ref: '#/components/schemas/transferParty'
geoCode:
$ref: '#/components/schemas/geoCode'
individualQuotes:
items:
$ref: '#/components/schemas/IndividualQuote'
maxItems: 1000
minItems: 1
type: array
required:
- bulkQuoteId
- from
- individualQuotes
type: object
bulkQuoteResponse:
description: A response to a request for a bulk quote.
properties:
bulkQuoteId:
$ref: '#/components/schemas/bulkQuoteId'
expiration:
$ref: '#/components/schemas/timestamp'
individualQuoteResults:
description: >-
Fees for each individual transaction, if any of them are charged per
transaction.
items:
oneOf:
- $ref: '#/components/schemas/IndividualQuoteResultSuccess'
- $ref: '#/components/schemas/IndividualQuoteResultFailed'
maxItems: 1000
minItems: 1
type: array
required:
- bulkQuoteId
- individualQuoteResults
type: object
bulkTransferId:
description: A Mojaloop API transfer identifier (UUID).
pattern: >-
^[0-9a-f]{8}-[0-9a-f]{4}-[1-5][0-9a-f]{3}-[89ab][0-9a-f]{3}-[0-9a-f]{12}$
type: string
bulkTransferRequest:
properties:
bulkQuote:
$ref: '#/components/schemas/bulkQuoteResponse'
bulkTransferId:
$ref: '#/components/schemas/bulkTransferId'
from:
$ref: '#/components/schemas/transferParty'
individualTransfers:
items:
$ref: '#/components/schemas/IndividualTransfer'
maxItems: 1000
minItems: 1
type: array
required:
- bulkTransferId
- individualTransfers
type: object
bulkTransferResponse:
properties:
bulkTransferId:
$ref: '#/components/schemas/bulkTransferId'
homeTransactionId:
description: >-
Transaction ID from the DFSP backend, used to reconcile transactions
between the switch and DFSP backend systems.
type: string
individualTransferResults:
items:
$ref: '#/components/schemas/IndividualTransferResult'
maxItems: 1000
minItems: 1
type: array
required:
- homeTransactionId
type: object
currency:
enum:
- AED
- AFN
- ALL
- AMD
- ANG
- AOA
- ARS
- AUD
- AWG
- AZN
- BAM
- BBD
- BDT
- BGN
- BHD
- BIF
- BMD
- BND
- BOB
- BRL
- BSD
- BTN
- BWP
- BYN
- BZD
- CAD
- CDF
- CHF
- CLP
- CNY
- COP
- CRC
- CUC
- CUP
- CVE
- CZK
- DJF
- DKK
- DOP
- DZD
- EGP
- ERN
- ETB
- EUR
- FJD
- FKP
- GBP
- GEL
- GGP
- GHS
- GIP
- GMD
- GNF
- GTQ
- GYD
- HKD
- HNL
- HRK
- HTG
- HUF
- IDR
- ILS
- IMP
- INR
- IQD
- IRR
- ISK
- JEP
- JMD
- JOD
- JPY
- KES
- KGS
- KHR
- KMF
- KPW
- KRW
- KWD
- KYD
- KZT
- LAK
- LBP
- LKR
- LRD
- LSL
- LYD
- MAD
- MDL
- MGA
- MKD
- MMK
- MNT
- MOP
- MRO
- MUR
- MVR
- MWK
- MXN
- MYR
- MZN
- NAD
- NGN
- NIO
- NOK
- NPR
- NZD
- OMR
- PAB
- PEN
- PGK
- PHP
- PKR
- PLN
- PYG
- QAR
- RON
- RSD
- RUB
- RWF
- SAR
- SBD
- SCR
- SDG
- SEK
- SGD
- SHP
- SLL
- SOS
- SPL
- SRD
- STD
- SVC
- SYP
- SZL
- THB
- TJS
- TMT
- TND
- TOP
- TRY
- TTD
- TVD
- TWD
- TZS
- UAH
- UGX
- USD
- UYU
- UZS
- VEF
- VND
- VUV
- WST
- XAF
- XCD
- XDR
- XOF
- XPF
- XTS
- XXX
- YER
- ZAR