Used to get the balance of a specified card.
Request
Body Params application/json
{
"user_id": 0,
"card_id": 0
}
Request Code Samples
curl --location --request POST '/card/get_balance' \
--header 'Merchant-ID;' \
--header 'X-HMAC;' \
--header 'Content-Type: application/json' \
--data-raw '{
"user_id": 0,
"card_id": 0
}'
Responses
application/json {
"balance": 57.86,
"refund_amount": 57.39
"currency": "USD"
}
Modified at 2025-06-30 15:26:06