Transfer funds Copy section link Copied!
In order to transfer funds from one of your accounts to another, you must use the /transfer/create API (or instantiate the create method of the ApiTransfer class)
Parameter Name
Required
Type
Description
accountCptNumber
string
A string representing the account number.
transferAmount
object
amount information
accountNumber
string
A string representing the account number.
orderRef
string
Marketplace reference for this order.
Characters authorized are: a to z, A to Z, 0 to 9 and - / . + : and space
metaData
object
JSON data for the marketplace. This data is not used by payment systems.
reason
string
Operation label transmitted in payment system. Maximum length of 140 characters.
Example Copy section link Copied!
Here is a JSON payload sample for a request:
JSON
Copy
Copied
{
"accountNumber": "1300600000EUR01004110",
"accountCptNumber": "1300600000EUR01006110",
"orderRef": "20210203142044",
"reason": "test",
"transferAmount": {
"value": "10.01",
"currency": "EUR"
}
}
Copy
Copied
If your request encountered an error, you can use the following codes for troubleshooting"
Retrieving the result Copy section link Copied!
If the request is successful, you will receive a response containing the following information:
Parameter Name
Type
Description
resultCode
string
resultCodeMessage
string
transactionId
string
Example of response Copy section link Copied!
Here is the JSON payload for a response:
JSON
Copy
Copied
{
"resultCode": "0",
"transactionId": "1287521"
}
Copy
Copied