Request
Provide your bearer token in the Authorization
header when making requests to protected resources. Example:Authorization: Bearer ********************
Body Params application/json
{
"beneficiaryDetailId": "BED22433536Z5F",
"enkashCardId": "EKCBEFFEC1",
"amount": 10,
"productCode": "DEFAULT",
"merchantName": "enkash",
"remarks": "test",
"payoutMode": "IMPS",
"otpMedium": "MOBILE",
"otp": "968846",
"otpReferenceId": "EKR1Q285XK",
"cardAccountId": "CAC7975",
"uniqueTxnReferenceId": "ABC1234"
}
Request Code Samples
curl --location --request POST 'https://pay-en-uat.enkash.in/api/v0/partner/instant-payout' \
--header 'partnerId: CRM338L2H' \
--header 'authorization: Bearer hxtaSWH8zb5XrA71XDrgFu1uO50' \
--header 'Cookie: _cfuvid=jS8C5lxGW4Q6FRWotUQnMGhbxbpGmvk3fGg1kdmq4WM-1752680737979-0.0.1.1-604800000; JSESSIONID=6709E31F4515A4151FABAC8E52CAD2A0' \
--header 'Content-Type: application/json' \
--data-raw '{
"beneficiaryDetailId": "BED22433536Z5F",
"enkashCardId": "EKCBEFFEC1",
"amount": 10,
"productCode": "DEFAULT",
"merchantName": "enkash",
"remarks": "test",
"payoutMode": "IMPS",
"otpMedium": "MOBILE",
"otp": "968846",
"otpReferenceId": "EKR1Q285XK",
"cardAccountId": "CAC7975",
"uniqueTxnReferenceId": "ABC1234"
}'
Responses
{
"code": 0,
"message": "Success",
"payload": {
"status": "SUCCESS",
"amount": 10,
"enKashTransactionId": "ECT0Z606F796N",
"instantPayoutId": "PT85790603SJ3F",
"paymentDate": {
"date": {
"year": 2025,
"month": 8,
"day": 20
},
"time": {
"hour": 23,
"minute": 52,
"second": 9,
"nano": 430000000
}
},
"createdOn": {
"date": {
"year": 2025,
"month": 8,
"day": 20
},
"time": {
"hour": 23,
"minute": 52,
"second": 9,
"nano": 257000000
}
}
}
}
Modified at 2025-08-21 07:34:28