Enkash Developer Portal
Home
Home
Login
  1. Home
  • Back to home
  • Gift Card Apis
  • Key Capabilities
  • Encryption & Decryption Guide
  • Authentication
    • Auth Token
  • Create Gift Card
    POST
  • Get Card Balance
    POST
  • Get Transaction Details
    POST
Home
Home
Login
  1. Home

Get Card Balance

Developing
POST
https://pay-en-uat.enkash.in/api/v0/partner/enKashCard/card-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" : "CEK" , 
"cardAccountId" : "CA123"

}

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/card-balance' \
--header 'partnerId: CRM338L2H' \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data-raw '{
"companyId" : "CEK" , 
"cardAccountId" : "CA123"

}'

Responses

🟢200Success
application/json
Body

Example
{
    "code": 0,
    "message": "Success",
    "payload": {
        "totalBalance": 2000.00
    }
}
Modified at 2025-12-22 18:01:46
Previous
Create Gift Card
Next
Get Transaction Details
Built with