- Token APIs
- Reward Allocation
- Incentive Allocation
- Redemption
- Point Management
Create And Allocate Points
Developing
POST
/api/v0/partner/enKashCard/create-allocate-points
Request
Header Params
partnerId
stringÂ
required
Example:
CRMXWB3ZM
Content-Type
stringÂ
required
Example:
application/json
authorization
stringÂ
required
Example:
Bearer {{access_token}}
Body Params application/json
companyId
stringÂ
required
cardAccountId
stringÂ
required
transactionCode
objectÂ
required
ALLOCATION
stringÂ
required
transactionType
objectÂ
required
CR
stringÂ
required
DR
stringÂ
required
type
objectÂ
required
ALLOCATE_POINT
stringÂ
required
UNALLOCATE_POINT
stringÂ
required
email
stringÂ
required
mobile
stringÂ
required
title
stringÂ
required
firstName
stringÂ
required
gender
stringÂ
required
loadAmount
numberÂ
required
uniqueReferenceNumber
stringÂ
required
Example
{
"companyId": "CEK1PU9AOO",
"cardAccountId": "CAQL8YCV3",
"transactionCode": "ALLOCATION",
"transactionType": "CR",
"type": "ALLOCATE_POINT",
"email": "xyz2@gmail.com",
"mobile": "9600098867",
"title": "Mr",
"firstName": "hedfdfg",
"gender": "M",
"loadAmount": 11,
"uniqueReferenceNum": "TEST234236"
}
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/create-allocate-points' \
--header 'partnerId: CRMXWB3ZM' \
--header 'authorization: Bearer {{access_token}}' \
--header 'Content-Type: application/json' \
--data-raw '{
"companyId": "CEK1PU9AOO",
"cardAccountId": "CAQL8YCV3",
"transactionCode": "ALLOCATION",
"transactionType": "CR",
"type": "ALLOCATE_POINT",
"email": "xyz2@gmail.com",
"mobile": "9600098867",
"title": "Mr",
"firstName": "hedfdfg",
"gender": "M",
"loadAmount": 11,
"uniqueReferenceNum": "TEST234236"
}'
Responses
🟢200Success
application/json
Body
code
integerÂ
required
message
stringÂ
required
payload
objectÂ
required
enKashCardId
stringÂ
required
userId
stringÂ
required
cardAccountId
stringÂ
required
email
stringÂ
required
mobile
stringÂ
required
title
stringÂ
required
firstName
stringÂ
required
gender
stringÂ
required
otbBalance
integerÂ
required
cardStatus
stringÂ
required
L("Locked"), UL("UnLocked"), BL("Blocked"),AP("Activation InProgress");
companyId
stringÂ
required
Example
{"code":0,"message":"Success","payload":{"enKashCardId":"EKC04AZHXP","userId":"EKIQB4L2","cardAccountId":"CAQL8YCV3","token":"16b9c31b42643796e064","maskedNumber":"XXXX XXXX XXXX 8867","expiryMonth":"06","expiryYear":"2026","email":"xyz2@gmail.com","mobile":"9600098867","title":"Mr","firstName":"hedfdfg","gender":"M","usedMtd":0,"usedDtd":0,"usedYtd":0,"otbBalance":11,"primaryCard":false,"prepaidCard":true,"physicalCard":false,"deleted":false,"closedLoopCard":false,"createdOn":"Jun 20, 2024 2:56:47 PM","modifiedOn":"Jun 20, 2024 2:56:47 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":11,"companyId":"CEK1PU9AOO","cardKitMasterId":14,"extEntityId":"EXT3YTK2P7CYK","switchProvider":"EK_CLOSEDLOOP_CREDIT","accountBalance":38628.00,"physicalCardAllowed":false,"surchargeAmt":0,"panValidated":false,"usedLtd":0,"latestTnCVersionAccepted":true,"latestKeyFactAccepted":true,"latestTnCVersionAcceptedForPrimaryCard":true,"latestKeyFactAcceptedCardForPrimaryCard":true,"virtualAccountNumber":"ENKASHEDENKEKC04AZHXP","limitAllocatedLtd":0,"posAllowed":false,"posAllowedAdmin":false,"atmAllowed":false,"atmAllowedAdmin":false,"onlineAllowed":false,"onlineAllowedAdmin":false,"liveImage":false,"cKycEnabled":false,"unallocateFundAllowed":true,"useParentFundAllowed":false,"minKycOtpVerified":false,"enKashSupportEmail":"support@enkash.in","enKashSupportMobile":"1234567890","companyName":"Test Company","vKycAllowed":false,"accountType":{"name":"EMPLOYEE_REWARDS","label":"Employee Rewards","description":"Reward"},"lastAllocatedAmount":0,"holdBalance":0,"enkashCardTxnId":"ECTRSZJ8CRJ2E","unAllocateHoldBalance":0,"tncUnAllocateAllowed":false,"tncUnAllocateAccepted":false,"totalRewardsReceived":1,"rewardPointsReceived":11}}
Modified at 2025-05-24 08:09:43