Business API
Get transfer reasons
api
get
/transfer-reasons

Get transfer reasons

In order to initiate a transfer in certain currencies and countries, you must provide a transfer reason. With this endpoint you can retrieve all transfer reasons available to your business account per country and currency.

After you retrieve the results, use the appropriate reason code in the transfer_reason_code field when making a transfer to a counterparty or creating a payout link.

Request

Response

List of transfer reasons

Response body
Body array of objects
Was this page helpful?
GET
/transfer-reasons . 
curl -L -X GET 'https://b2b.revolut.com/api/1.0/transfer-reasons' \
-H 'Accept: application/json' \
-H 'Authorization: Bearer <TOKEN>'
Response body samples
[
{
"country": "IN",
"currency": "INR",
"code": "advertising",
"description": "Advertising"
},
{
"country": "IN",
"currency": "INR",
"code": "advisor_fees",
"description": "Advisor fees"
},
{
"country": "IN",
"currency": "INR",
"code": "construction",
"description": "Construction"
},
{
"country": "IN",
"currency": "INR",
"code": "delivery",
"description": "Delivery"
}
]