- EnKash Developer Portal Overview
- Payment Gateway
- Payment Gateway Overview
- Payment Gateway Sign Up
- Payment Methods
- Supported Integrations
- Payment Gateway APIs
- Web Integration
- Server to Server Integration
- Test Card Details
- Authorization
- Orders
- Payments
- Refunds
- Settlements
- Split Settlements
- E-Commerce Plugins
- Payment Links
- Payment Button
- Qr Code
- UPI Mandate
- Payment Links
- Bharat Connect (BBPS)
- About Bharat Connect
- B2B Invoicing
- Invoice
- Payment
- Financing
- Onboarding
- cdNote
- Purchase Order
- webhook-invoice
- webhook-payments
- webhook-business-onboarding
- webhook-financing
- webhook-cdNote
- Webhook Purchase Order
- Webhook Send Purchase Order Request
- Webhook Send Purchase Order Response
- Webhook Confirm Purchase Order Request
- Webhook Confirm Purchase Order Response
- Webhook Edit Purchase Order Request
- Webhook Edit Purchase Order Response
- Webhook Status Change Purchase Order Request
- Webhook Status Change Purchase Order Response
- Bill Payments
- Payouts
- Accounts Payable Management Tool
- Account Receivable
- Expense Management
- Loyalty
- Card Management
- Verification Suite
Incentive Get User Details
Developing
POST
/api/v0/partner/enKashCard/search
Request
Header Params
partnerId
stringÂ
required
Example:
CRMXWB3ZM
Authorization
stringÂ
required
Example:
Bearer SuzhOaF6K64ztA4rSmDOgl9yMlI
Content-Type
stringÂ
required
Example:
application/json
Cookie
stringÂ
required
Example:
JSESSIONID=526FAFE391FEC276549D84FEF5FC5BE7; JSESSIONID=B01764303CD3DEFC3C0699B3EF351505
Body Params application/json
cardAccountId
stringÂ
required
companyId
stringÂ
required
enKashCardId
stringÂ
required
Example
{
"cardAccountId": "CAQL8YCV3",
"companyId": "CEK1PU9AOO",
"enKashCardId": "EKC9MKS5RM"
}
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 'https://test.your-api-server.com/api/v0/partner/enKashCard/search' \
--header 'partnerId: CRMXWB3ZM' \
--header 'Authorization: Bearer SuzhOaF6K64ztA4rSmDOgl9yMlI' \
--header 'Cookie: JSESSIONID=526FAFE391FEC276549D84FEF5FC5BE7; JSESSIONID=B01764303CD3DEFC3C0699B3EF351505' \
--header 'Content-Type: application/json' \
--data-raw '{
"cardAccountId": "CAQL8YCV3",
"companyId" : "CEK1PU9AOO",
"enKashCardId": "EKC9MKS5RM"
}'
Responses
🟢200Success
application/json
Body
code
integerÂ
required
message
stringÂ
required
payload
objectÂ
required
recordsCount
integerÂ
required
data
array [object {15}]Â
required
Example
{
"code": 0,
"message": "Success",
"payload": {
"recordsCount": 1,
"data": [
{
"enKashCardId": "EKC9MKS5RM",
"userId": "EKPDC37K",
"cardAccountId": "CAQL8YCV3",
"token": "152aaef7e91c6abfc7fb",
"maskedNumber": "2004 00XX XXXX XX89",
"expiryMonth": "",
"expiryYear": "",
"email": "test@hrms.com",
"mobile": "6667778889",
"title": "Mr",
"firstName": "Test",
"lastName": "Company",
"gender": "M",
"usedMtd": 0,
"usedDtd": 0,
"usedYtd": 0,
"otbBalance": 321,
"primaryCard": true,
"prepaidCard": true,
"physicalCard": false,
"deleted": false,
"closedLoopCard": false,
"createdOn": "Feb 1, 2024 2:28:18 PM",
"modifiedOn": "Mar 14, 2024 3:07:11 PM",
"cardStatus": {
"name": "UL",
"label": "UnLocked"
},
"kycStatus": {
"name": "VERIFIED",
"label": "Verified"
},
"cardProgramme": "SBM",
"useAccountFunds": false,
"blockCode": "A",
"partnerLogo": "https://image.enkash.in/IMAGES/sbm-logo.png",
"physicalDeliveryAddressFlag": false,
"cardActivated": true,
"binType": {
"name": "REWARD",
"label": "Reward Card"
},
"loadAmount": 10,
"companyId": "CEK1PU9AOO",
"middleName": "",
"extEntityId": "EXTBP0IBHV0H2",
"physicalCardAllowed": false,
"surchargeAmt": 0,
"panValidated": false,
"usedLtd": 0,
"latestTnCVersionAccepted": true,
"latestKeyFactAccepted": true,
"latestTnCVersionAcceptedForPrimaryCard": true,
"latestKeyFactAcceptedCardForPrimaryCard": true,
"primaryEnKashCardId": "EKC9MKS5RM",
"primaryEnKashCardUserId": "EKPDC37K",
"limitAllocatedLtd": 311,
"posAllowed": true,
"posAllowedAdmin": true,
"atmAllowed": false,
"atmAllowedAdmin": false,
"onlineAllowed": true,
"onlineAllowedAdmin": true,
"liveImage": false,
"cKycEnabled": false,
"unallocateFundAllowed": false,
"useParentFundAllowed": false,
"minKycOtpVerified": false,
"vKycAllowed": false,
"accountType": {
"name": "EMPLOYEE_REWARDS",
"label": "Employee Rewards",
"description": "Reward"
},
"lastAllocatedAmount": 188,
"holdBalance": 0,
"enableHoldAmount": false,
"unAllocateHoldBalance": 0,
"tncUnAllocateAllowed": false,
"tncUnAllocateAccepted": false,
"minTransactionAmount": 10,
"totalRewardsReceived": 3,
"rewardPointsReceived": 321
}
]
}
}
Modified at 2024-09-02 11:58:39