Wallet to Wallet Transfer
Read on details on wallet to wallet transfer of funds
Users can send funds to another user’s wallet within the same Client. To do so, in the request “type” must be specified as “TRANSFER”.
POST /users/{{userId}}/funds/{{wallet_id}}/transfers
curl --location -g --request POST '{{url}}/users/{{userId}}/funds/{{wallet_id}}/transfers' \
--header 'X-Client-Id: {{client_id}}' \
--header 'X-Client-Secret:{{client_secret}} ' \
--header 'Content-Type: application/json' \
--header 'X-Idempotency-Key: idempotencykey' \
--data-raw{
"amount": 10,
"fee_amount": 0,
"note": "Sample Note",
"currency": "USD",
"ip_address": "10.10.10.5",
"type": "TRANSFER",
"to": {
"id": "efdc93dd-4019-4f5a-84df-9cfc21d8ce2e",
"fund_id": "bfdc93dd-4019-4f5a-84df-9cfc21d8ce2c"
}
}
Last updated
Was this helpful?