Enkash Developer Portal
Home
Home
Login
  1. Home
  • Explore Our Product Suite
  • Payment Gateway
    • Set Up Payment Gateway
    • Payment Options
    • Easy API Setup
    • Payment Gateway APIs
  • Payouts
    • Set Up Payouts
    • Payout APIs
  • Prepaid Cards
    • Key Capabilities
    • Set Up Prepaid Cards
    • Prepaid Card APIs
  • Wallet
    • Wallet APIs
  • Gift Card
    • Gift Card Apis
  • Bharat Connect (BBPS)
    • Vendor Payment
    • Bill Payment
  • Accounts Payable
    • Accounts Payable APIs
  • Account Receivable
    • Accounts Receivable Overview
    • Account Receivable APIs
  • Expense Management
    • Expense Management Overview
    • About Authorization
    • Expense APIs
    • Partner Integeation
  • Rewards & Incentives
    • About Rewards
    • Getting Started
    • Encryption & Decryption Guide
    • Reward Allocation
    • Incentive Allocation
    • Reward APIs
  • Petty Cash
    • Request Encryption Using AES
    • Petty Cash API
  • Verification Suite
    • Verification Suite Overview
    • Verification Suite APIs
  • Get Card Details
    POST
Home
Home
Login
  1. Home

Get Card Details

POST
https://pay-en-uat.enkash.in/api/v0/partner/enKashCard/wallet-details
📌
The Get Wallet Details endpoint retrieves the profile and current status of a user's enKash wallet. This includes essential information such as KYC status, activation status, linked user details, limits, and any configuration assigned to the wallet.
Use this endpoint whenever your application needs to display wallet information, validate wallet eligibility for a transaction, or sync the latest wallet state for a user.

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
{
    "cardAccountId": "CAC7975",
    "companyId": "CEKQ08TRRG",
    "enKashCardId": "EKCWLUAADN",
    "clientReferenceId": "CLI5736JK"
}

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/wallet-details' \
--header 'partnerId: CRM338L2H' \
--header 'Authorization: Bearer <token>' \
--header 'Cookie: JSESSIONID=526FAFE391FEC276549D84FEF5FC5BE7; JSESSIONID=B01764303CD3DEFC3C0699B3EF351505; _cfuvid=jS8C5lxGW4Q6FRWotUQnMGhbxbpGmvk3fGg1kdmq4WM-1752680737979-0.0.1.1-604800000; JSESSIONID=6709E31F4515A4151FABAC8E52CAD2A0' \
--header 'Content-Type: application/json' \
--data-raw '{
    "cardAccountId": "CAC7975",
    "companyId": "CEKQ08TRRG",
    "enKashCardId": "EKCWLUAADN",
    "clientReferenceId": "CLI5736JK"
}'

Responses

🟢200
application/json
Body

Example
{
    "code": 0,
    "message": "Success",
    "payload": {
        "recordsCount": 1,
        "data": [
            {
                "enKashCardId": "EKCWLUAADN",
                "cardAccountId": "CAC7975",
                "expiryMonth": "",
                "expiryYear": "",
                "title": "Mr",
                "firstName": "Kris",
                "lastName": "Singh",
                "otbBalance": 0.00,
                "createdOn": "Jul 16, 2025 9:24:38 PM",
                "modifiedOn": "Jul 16, 2025 9:24:38 PM",
                "cardStatus": {
                    "name": "UL",
                    "label": "UnLocked"
                },
                "kycStatus": {
                    "name": "NOT_UPLOADED",
                    "label": "Not Uploaded"
                },
                "cardActivated": false,
                "binType": {
                    "name": "PREPAID",
                    "label": "Prepaid Card"
                },
                "loadAmount": 0.00,
                "companyId": "CEKQ08TRRG",
                "middleName": "",
            ]
        }
    ]
}
}
Modified at 2025-12-22 17:59:10
Previous
Verification Suite APIs
Built with