Get Transfer Fields & Fees
POST
/payment-service/api/v1/transfer/get-transfer-fee
Transfer
Request
Body Params application/json
onBehalfOf
string | null
optional
sourceBankBicOrCode
string
required
sourceAccountNumber
string
required
sourceCurrencyIso3Code
string
required
sourceCountryIso3Code
string
required
beneficiaryId
string | null
required
Example
{
"onBehalfOf": "string",
"sourceBankBicOrCode": "string",
"sourceAccountNumber": "string",
"sourceCurrencyIso3Code": "string",
"sourceCountryIso3Code": "string",
"beneficiaryId": "string"
}
Request samples
Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request POST 'https://api-gateway-uat.mmacs.io/platform/payment-service/api/v1/transfer/get-transfer-fee' \
--header 'Content-Type: application/json' \
--data-raw '{
"onBehalfOf": "string",
"sourceBankBicOrCode": "string",
"sourceAccountNumber": "string",
"sourceCurrencyIso3Code": "string",
"sourceCountryIso3Code": "string",
"beneficiaryId": "string"
}'
Responses
🟢200OK
application/json
Body
data
object
FeeConfiguredResponse
feeCurrency
string
required
feeAmount
number
required
isFeePercentage
boolean
required
fields
array[object (PaymentMethodFieldMetadata) {4}]
required
error
object | null
optional
Example
{
"data": {
"feeCurrency": "string",
"feeAmount": 0,
"isFeePercentage": true,
"fields": [
{
"name": "string",
"isMandatory": true,
"type": "NUMBER",
"options": [
"string"
]
}
]
},
"error": {}
}
🟠400Bad Request
🟠404Record Not Found