Wallet To Wallet Transfer
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",
"amount": 10,
"productCode": "DEFAULT",
"merchantName": "enkash",
"remarks": "test",
"payoutMode": "WALLET",
"otpMedium": "MOBILE",
"otp": "968846",
"otpReferenceId": "EKR1Q285XK",
"cardAccountId": "CAC7975",
"uniqueTxnReferenceId": "ABC1234",
"payeeWalletId": "EKCZXCXQMP",
"payeeMobileNumber": "8907170000"
}
Request Code Samples
curl --location --request POST 'https://pay-en-uat.enkash.in/api/v0/partner/instant-payout/wallet' \
--header 'partnerId: CRM338L2H' \
--header 'authorization: Bearer hxtaSWH8zb5XrA71XDrgFu1uO50' \
--header 'Authorization: Bearer <token>' \
--header 'Cookie: _cfuvid=jS8C5lxGW4Q6FRWotUQnMGhbxbpGmvk3fGg1kdmq4WM-1752680737979-0.0.1.1-604800000; JSESSIONID=6709E31F4515A4151FABAC8E52CAD2A0' \
--header 'Content-Type: application/json' \
--data-raw '{
"enkashCardId": "EKCWLUAADN",
"amount": 10,
"productCode": "DEFAULT",
"merchantName": "enkash",
"remarks": "test",
"payoutMode": "WALLET",
"otpMedium": "MOBILE",
"otp": "968846",
"otpReferenceId": "EKR1Q285XK",
"cardAccountId": "CAC7975",
"uniqueTxnReferenceId": "ABC1234",
"payeeWalletId": "EKCZXCXQMP",
"payeeMobileNumber": "8907170000"
}'
Responses
application/json {
"code": 0,
"message": "Success",
"payload": {
"status": "PENDING",
"amount": 1,
"enKashCardTransactionId": "ECTTWEF30858N",
"instantPayoutId": "PT30079158TTDV",
"paymentDate": "2025-11-10 14:22:42",
"createdOn": "2025-11-10 14:22:41"
}
}
Modified at 2025-11-18 19:15:00