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

Load Money Topup

Developing
POST
https://pay-en-uat.enkash.in/api/v0/partner/load-money

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
{
  "enkashCardId": "EKCWLUAADN",
  "type": "ALLOCATE_FUND",
  "amount": 20,
  "remarks": "testing"
}

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/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

🟢200OK
text/plain
Body

Example
{
    "code": 0,
    "message": "Success",
    "payload": {
        "checkoutUrl": "https://checkout-uat-v2.enkash.in/v1/pay/ORD17542994606694NXeg"
    }
}
Modified at 2025-11-10 10:54:30
Previous
Update Wallet Holder Details
Next
Add Beneficiary
Built with