Enkash Developer Portal
Home
Home
Login
  1. Home
  • Back to home
  • Prepaid Card APIs
  • Encryption & Decryption Guide
  • Auth Token
    POST
  • Create Card Account
    POST
  • Create Gift Card
    POST
  • Create Prepaid Card
    POST
  • Set Card PIN
    POST
  • Load Card Balance
    POST
  • Get Card Account Details
    POST
  • Generate Card OTP
    POST
  • View Card Details
    POST
  • Card Usage Controls
    POST
  • Get Card Usage Limits
    POST
  • Request Card Replacement
    POST
  • Block Card
    POST
  • Order Physical Card
    POST
  • Get Card Details
    POST
  • Get Transaction Details
    POST
  • Get All Transaction details
    POST
  1. Home

Load Card Balance

POST
/api/v0/partner/enKashCard/balance
📌
This API allows updating the balance of a prepaid card, enabling real-time adjustments to the card’s available funds for accurate financial transactions and effective balance management.
This API cannot be used to load balance on a Gift Card.

Request

Header Params

Body Params application/json

Example
{
    "companyId": "CEKEP5GSGP",
    "cardAccountId": "CABFIPS",
    "createdBy": "anay",
    "amount": 10,
    "transactionType": "CR",
    "description": "desc",
    "type": "ALLOCATE_FUND",
    "transactionCode": "ALLOCATION",
    "uniqueReferenceNumber": "Ref123",
    "remarks": "string",
    "enKashCardId": "EKCMB7KAEW"
}

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 'authorization: Bearer 2f68dbbf-519d-4f01-9636-e2421b68f379' \
--header 'partnerId:  CRXXXXXXX' \
--header 'Content-Type: application/json' \
--data-raw '{
    "companyId": "CEKEP5GSGP",
    "cardAccountId": "CABFIPS",
    "createdBy": "anay",
    "amount": 10,
    "transactionType": "CR",
    "description": "desc",
    "type": "ALLOCATE_FUND",
    "transactionCode": "ALLOCATION",
    "uniqueReferenceNumber": "Ref123",
    "remarks": "string",
    "enKashCardId": "EKCMB7KAEW"
}'

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:21:42
Previous
Set Card PIN
Next
Get Card Account Details
Built with