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 Top-Up from Balance

POST
/api/v0/partner/enKashCard/balance
📌
Wallet Top-Up from Balance enables instant wallet funding using a prefunded partner balance, without requiring a payment gateway.

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
{
    "companyId": "CEKQ08TRRG",
    "cardAccountId": "CAC7975",
    "createdBy": "anay",
    "amount": 10,
    "transactionType": "CR",
    "description": "desc",
    "type": "ALLOCATE_FUND",
    "transactionCode": "ALLOCATION",
    "uniqueReferenceNumber": "Ref123",
    "remarks": "string",
    "enKashCardId": "EKCWLUAADN",
    "enkashCardBenefitId": "EKCBY22EXYH"
}

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 '/api/v0/partner/enKashCard/balance' \
--header 'partnerId:  CRM338L2H' \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data-raw '{
    "companyId": "CEKQ08TRRG",
    "cardAccountId": "CAC7975",
    "createdBy": "anay",
    "amount": 10,
    "transactionType": "CR",
    "description": "desc",
    "type": "ALLOCATE_FUND",
    "transactionCode": "ALLOCATION",
    "uniqueReferenceNumber": "Ref123",
    "remarks": "string",
    "enKashCardId": "EKCWLUAADN",
    "enkashCardBenefitId": "EKCBY22EXYH"
}'

Responses

🟢200OK
application/json
Body

Example
{
    "code": 0,
    "message": "Success",
    "payload": "Funds allocated from Parent Account to Card by Admin successful"
}
Modified at 2025-12-24 16:54:37
Previous
Add Money to Wallet
Next
Wallet Funding Limit Validation
Built with