Load Wallet
Read on details on loading funds into wallet account
Users can load their wallet from their linked bank and card accounts. To do so, “type” must be specified as “LOAD” for load 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": 50,
"fee_amount": 0,
"note": "Sample Note",
"currency": "USD",
"ip_address": "10.10.10.5",
"from_fund_id": "d71aa720-3948-4975-a2cd-f5ad977f2f02",
"type": "LOAD"
}
Last updated
Was this helpful?