Load Money Topup
Developing
Request
Provide your bearer token in the Authorization
header when making requests to protected resources. Example:Authorization: Bearer ********************
Body Params application/json
{
"enkashCardId": "EKCWLUAADN",
"type": "ALLOCATE_FUND",
"amount": 20,
"remarks": "testing"
}
Request Code Samples
curl --location --request POST 'https://pay-en-uat.enkash.in/api/v0/partner/load-money' \
--header 'partnerId: CRM338L2H' \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data-raw '{
"enkashCardId": "EKCWLUAADN",
"type": "ALLOCATE_FUND",
"amount": 20,
"remarks": "testing"
}'
Responses
{
"code": 0,
"message": "Success",
"payload": {
"checkoutUrl": "https://checkout-uat-v2.enkash.in/v1/pay/ORD17542994606694NXeg"
}
}
Modified at 2025-10-08 02:50:05