cURL
curl --request POST \ --url https://api.example.com/customer/transfer \ --header 'Content-Type: application/json' \ --header 'X-API-NONCE: <x-api-nonce>' \ --header 'X-API-SIGNATURE: <x-api-signature>' \ --header 'X-API-SUBSCRIPTION-KEY: <x-api-subscription-key>' \ --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 money instantly between accounts on INDX.
Signature header
Timestamp header
Nonce header
Account ID header
Schema to deserialize the transaction transfer request.
Account id
"1234abcd"
Counterparty account number
"987654321"
Amount
x <= 100000000
100
Note
"Payment for invoice #1234"
Successful Response
Schema to serialize the transaction transfer response.
Show child attributes