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

Wallet Funding Limit Validation

POST
https://pay-en-uat.enkash.in/api/v0/partner/enKashCard/validate/wallet-load-limit
📌
Lets you know if the amount you’re trying to add is within the allowed wallet top-up limits before you proceed.

Request

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

Body Params application/jsonRequired

Example
{
  "enKashCardId": "EKCWLUAADN",
  "cardAccountId": "CAC7975",
  "amountToLoad": "100"
}

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/validate/wallet-load-limit' \
--header 'partnerId: CRM338L2H' \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data-raw '{
  "enKashCardId": "EKCWLUAADN",
  "cardAccountId": "CAC7975",
  "amountToLoad": "100"
}'

Responses

🟢200
application/json
Body

Example
{
    "amountLoadAllowed": true
}
Modified at 2025-12-24 17:02:34
Previous
Wallet Top-Up from Balance
Next
Generate Transaction OTP
Built with