Unload Wallet
Read on details on unloading funds from wallet account
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"
}
}{
"amount": 5,
"currency": "USD",
"fee_amount": 0,
"from_fund_id": "ad82cebb-9ca3-4f2a-a1de-27f004b838bd",
"id": "b3747713-b79f-412c-be42-3e2bf90e5c11",
"ip_address": "10.10.10.5",
"note": "Sample Note",
"status": "INITIATED",
"to": {
"fund_id": "bbee9d73-35d8-4ac0-8862-01bb89e6cadc",
"id": "3e626447-cc80-4cd0-89e7-19001f939ee4"
},
"type": "UNLOAD",
"user_id": "3e626447-cc80-4cd0-89e7-19001f939ee4"
}Last updated