Skip to main content
POST
/
customer
/
transfer
Create Client Transfer
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"
  }
}
Create a transfer request to move money between accounts. This endpoint handles account-to-account transfers within the INDX system, supporting both internal and external account transfers.

Headers

X-API-SIGNATURE
string
required

Signature header

X-API-TIMESTAMP
integer
required

Timestamp header

X-API-NONCE
string
required

Nonce header

X-API-KEY
string
required

Account ID header

Body

application/json

Schema to deserialize the transaction transfer request.

sending_account_id
string
required

Account id

counterparty_account_id
string
required

Counterparty account number

amount
number
required

Amount

Required range: x <= 1000000
note
string
required

Note

Response

Successful Response

message
string
required
data
ClientCreateTransferResponse · object

Schema to serialize the transaction transfer response.