Get Card Balance
Developing
Request
Provide your bearer token in the Authorization
header when making requests to protected resources. Example:Authorization: Bearer ********************
Body Params application/json
{
"companyId" : "CEK" ,
"cardAccountId" : "CA123"
}
Request Code Samples
curl --location --request POST 'https://pay-en-uat.enkash.in/api/v0/partner/enKashCard/card-balance' \
--header 'partnerId: CRM338L2H' \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data-raw '{
"companyId" : "CEK" ,
"cardAccountId" : "CA123"
}'
Responses
application/json {
"code": 0,
"message": "Success",
"payload": {
"totalBalance": 2000.00
}
}
Modified at 2025-12-22 18:01:46