cURL
curl --request POST \ --url https://api.example.com/customer/transfer \ --header 'Content-Type: application/json' \ --header 'X-API-KEY: <x-api-key>' \ --header 'X-API-NONCE: <x-api-nonce>' \ --header 'X-API-SIGNATURE: <x-api-signature>' \ --header 'X-API-TIMESTAMP: <x-api-timestamp>' \ --data ' { "sending_account_id": "<string>", "counterparty_account_id": "<string>", "amount": 123, "note": "<string>" } '
{ "message": "<string>", "data": { "transaction_id": "123123123123", "sending_account_id": "1234abcd", "counterparty_account_id": "987654321", "amount": 100, "note": "Payment for invoice #1234" } }
Transfer request to transfer money between accounts.
Signature header
Timestamp header
Nonce header
Account ID header
Schema to deserialize the transaction transfer request.
Account id
Counterparty account number
Amount
x <= 1000000
Note
Successful Response
Schema to serialize the transaction transfer response.
Show child attributes
Transaction ID
"123123123123"
Account ID
"1234abcd"
"987654321"
Transaction amount
100
Note for the transaction
"Payment for invoice #1234"