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
  • Fund Transfer
    POST
  • Enquire Fund Transfer Status
    GET
  • Wallet to wallet Transfer
    POST
  • Get Account Balance
    POST
  • Merchant Transaction API
    POST
  • Merchant Transaction Settlement Status
    GET
  • All Merchant Settlement Transactions
    POST
  1. Home

Merchant Transaction API

Developing
POST
https://pay-en-uat.enkash.in/api/v0/partner/enKashCard/ppi-merchant-transaction
This endpoint allows you to create a transaction to existing merchants

Request

Header Params

Body Params application/json

Example
{
  "merchantDetailId": "MD7GWIYV3VEMQ8KQ",
  "enkashCardId": "EKCKIE9O2R",
  "companyId": "CEKZYD5VWX",
  "cardAccountId": "CAP1D8F",
  "amount": 20.00,
  "productCode": "DEFAULT",
  "remarks": "Payment towards merchant",
  "otpMedium": "MOBILE",
  "otp": "123456",
  "otpReferenceId": "EK0N4ERDOS",
  "uniqueTransactionId": "TXN_RANDOX123451abce"
  }

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/enKashCard/ppi-merchant-transaction' \
--header 'partnerId: PARTNER' \
--header 'Content-Type: application/json' \
--data-raw '{
  "merchantDetailId": "MD7GWIYV3VEMQ8KQ",
  "enkashCardId": "EKCKIE9O2R",
  "companyId": "CEKZYD5VWX",
  "cardAccountId": "CAP1D8F",
  "amount": 20.00,
  "productCode": "DEFAULT",
  "remarks": "Payment towards merchant",
  "otpMedium": "MOBILE",
  "otp": "123456",
  "otpReferenceId": "EK0N4ERDOS",
  "uniqueTransactionId": "TXN_RANDOX123451abce"
  }'

Responses

🟢200OK
application/json
Body

Example
{
  "response_code": 0,
  "response_message": "Success",
  "payload": {
    "status": "SUCCESS",
    "enKashTransactionId": "ECT2DEQ3U5RYO",
    "uniqueTransactionId": "TMnYYN98710091090",
    "txnDate": "2025-09-01T15:01:07.872"
  }
}
Modified at 2025-09-01 12:44:03
Previous
Get Account Balance
Next
Merchant Transaction Settlement Status
Built with