Wallet to Wallet Transfer
Read on details on wallet to wallet transfer of funds
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"
}
}{
"amount": 4,
"currency": "USD",
"fee_amount": 0,
"from_fund_id": "ad82cebb-9ca3-4f2a-a1de-27f004b838bd",
"id": "6a74ab95-51b3-45f2-a0d9-d0236780a4de",
"ip_address": "10.10.10.5",
"note": "Sample Note",
"status": "INITIATED",
"to": {
"fund_id": "9696d2f0-e15b-44cf-84ea-759c44a9b8c2",
"id": "21000223-2561-44b7-a661-e06d8aa1bc3a"
},
"type": "TRANSFER",
"user_id": "3e626447-cc80-4cd0-89e7-19001f939ee4"
}Last updated