Creating account transfer
Creating account address
POST /api/public/v1/transfers
This endpoint creates a transfer between accounts in the same currency. You can transfer funds between a master account and a subaccount, or between subaccounts.
Headers
Content-Type
application/vnd.api+json
Authorization
Bearer <api_key>
Body
data
object
Object with exchange request data.
data.type
string
Exchange request type. Always transfers.
data.attributes
object
A set of exchange request attributes.
data.attributes.from_account
string
From account ID.
data.attributes.to_account
string
To account ID.
data.attributes.amount
number
Transfer amount.
data.attributes.currency
string
Transfer currency.
data.attributes.reference
string
Unique reference ID for this transfer, included in downloadable CSV transaction reports.
Request JSON
{
"data": {
"type": "tranfers",
"attributes": {
"from_account": "13a85b45-8543-41c7-b963-394d4ea128ae",
"to_account": "dd5016e1-43bb-4be5-b6d6-79e8d0f662b1",
"amount": 10,
"currency": "EUR",
"reference": "c9807056-88da-409e-b628-732adbe76be5"
}
}
}Response
Last updated