Load Limit Check
Developing
Api created for validate wallet load limit.
Request
Provide your bearer token in the Authorization
header when making requests to protected resources. Example:Authorization: Bearer ********************
Body Params application/jsonRequired
{
"enKashCardId": "EKCWLUAADN",
"cardAccountId": "CAC7975",
"amountToLoad": "100"
}
Request Code Samples
curl --location --request POST 'https://pay-en-uat.enkash.in/api/v0/partner/enKashCard/validate/wallet-load-limit' \
--header 'partnerId: CRM338L2H' \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data-raw '{
"enKashCardId": "EKCWLUAADN",
"cardAccountId": "CAC7975",
"amountToLoad": "100"
}'
Responses
application/json {
"amountLoadAllowed": true
}
Modified at 2025-11-19 11:47:48