Unload Wallet
Read on details on unloading funds from wallet account
Users can withdraw funds from their wallet account to their linked bank and card accounts. To do so, “type” must be specified as “UNLOAD” for unload transfers.
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": 5,
"fee_amount": 0,
"note": "Sample Note",
"currency": "USD",
"ip_address": "10.10.10.5",
"type": "UNLOAD",
"to": {
"fund_id": "ad82cebb-9ca3-4f2a-a1de-27f004b838bd"
}
}
Last updated
Was this helpful?