Enkash Developer Portal
Home
Home
Login
  1. Wallet Management
  • Back to home
  • APIs - Wallet
  • KYC Status Handling Guide
  • T&C Acceptance Flow
  • Authentication
    • Auth Token
  • Wallet Setup
    • Create Wallet
    • Update Wallet Details
    • VKYC Link Generation
    • VKYC Status
  • Wallet Management
    • Add Money to Wallet
      POST
    • Wallet Top-Up from Balance
      POST
    • Wallet Funding Limit Validation
      POST
    • Generate Transaction OTP
      POST
    • Get Transaction Details
      POST
    • Get Wallet Balance
      POST
    • Get Wallet Details
      POST
  • Fund Transfers
    • Add Beneficiary
    • Search Beneficiaries
    • IMPS Fund Transfer
    • Wallet To Wallet Fund Transfer
    • Get Fund Transfer Status
  • Merchant Payments
    • Debit Wallet for Merchant Transaction
    • Merchant Settlement Status
  • Webhooks
    • Payment Notify Request
Home
Home
Login
  1. Wallet Management

Add Money to Wallet

POST
https://pay-en-uat.enkash.in/api/v0/partner/load-money
📌
The Add Money endpoint lets users fund their wallet using EnKash’s integrated payment gateway. It creates a secure payment session supporting cards, netbanking, UPI, and other modes, and credits the wallet once the payment is successful. Use this endpoint to enable in-app wallet top-ups without integrating a third-party PG.

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
Example
{
    "code": 0,
    "message": "Success",
    "payload": {
        "checkoutUrl": "https://checkout-uat-v2.enkash.in/v1/pay/ORD17542994606694NXeg"
    }
}
Modified at 2025-12-24 17:02:27
Previous
VKYC Status
Next
Wallet Top-Up from Balance
Built with