Enkash Developer Portal
Home
Home
Login
  1. Home
  • Back to home
  • Wallet APIs
  • Auth Token
    POST
  • Create Wallet (with Full Details)
    POST
  • Create Wallet (with Minimum Details)
    POST
  • Generate OTP
    POST
  • Min KYC
    POST
  • Get Wallet Details
    POST
  • Update Wallet Holder Details
    PATCH
  • VKYC Link Generation
    GET
  • VKYC Status
    GET
  • Load Money Topup
    POST
  • Load Money Without PG
    POST
  • Get Transaction Details
    POST
  • Add Beneficiary
    POST
  • Search Beneficiaries
    POST
  • Delete Beneficiary
    DELETE
  • Fund Transfer
    POST
  • Enquire Fund Transfer Status
    GET
  • Wallet to wallet Transfer
    POST
  1. Home

Wallet to wallet Transfer

Developing
POST
https://pay-en-uat.enkash.in/api/v0/partner/instant-payout/wallet

Request

Authorization
Provide your bearer token in the
Authorization
header when making requests to protected resources.
Example:
Authorization: Bearer ********************
Header Params

Body Params application/json

Example
{
  "beneficiaryDetailId": "BED22433536Z5F",
  "accountNumber": "82374111112",
  "ifsc": "HDFC0001234",
  "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

Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request POST 'https://pay-en-uat.enkash.in/api/v0/partner/instant-payout/wallet' \
--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",
  "accountNumber": "82374111112",
  "ifsc": "HDFC0001234",
  "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

🟢200OK
text/plain
Body

Example
{
    "code": 0,
    "message": "Success",
    "payload": {
        "status": "SUCCESS",
        "amount": 10,
        "enKashTransactionId": "ECT1WKIUGN290",
        "instantPayoutId": "PT7303098AMK75",
        "utr": "ECTPJ2V7W4KDQ",
        "paymentDate": {
            "date": {
                "year": 2025,
                "month": 8,
                "day": 18
            },
            "time": {
                "hour": 23,
                "minute": 16,
                "second": 10,
                "nano": 949000000
            }
        },
        "createdOn": {
            "date": {
                "year": 2025,
                "month": 8,
                "day": 18
            },
            "time": {
                "hour": 23,
                "minute": 16,
                "second": 2,
                "nano": 133000000
            }
        }
    }
}
Modified at 2025-08-18 17:45:26
Previous
Enquire Fund Transfer Status
Built with