Account Transfer
POST/private/AccountTransfer
Transfer funds to and from master and subaccounts. Note: AccountTransfer
must be called using an API key from the master account.
API Key Permissions Required: Funds permissions - Withdraw
Request
- application/json
Body
required
nonce int64required
Nonce used in construction of API-Sign
header
asset stringrequired
Asset being transferred
amount stringrequired
Amount of asset to transfer
from stringrequired
IIBAN of the source account
to stringrequired
IIBAN of the destination account
Responses
- 200
Funds transferred between accounts.
- application/json
- Schema
- Example (from schema)
Schema
result object
transfer_id string
Transfer ID
status string
Transfer status, either "pending"
or "complete"
error string[]
{
"error": [],
"result": {
"transfer_id": "TOH3AS2-LPCWR8-JDQGEU",
"status": "complete"
}
}
Loading...