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
  • Delete Beneficiary
    DELETE
  1. Home

Load Money Without PG

POST
/api/v0/partner/enKashCard/balance

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"
}

Request 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 '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"
}'

Responses

🟢200OK
application/json
Body

Example
{
    "code": 0,
    "message": "Success",
    "payload": "Funds allocated from Parent Account to Card by Admin successful"
}
Modified at 2025-08-04 11:34:33
Previous
Load Money Topup
Next
Get Transaction Details
Built with