Request
Provide your bearer token in the Authorization
header when making requests to protected resources. Example:Authorization: Bearer ********************
Body Params application/json
{
"companyId": "CEKQ08TRRG",
"cardAccountId": "CAC7975",
"createdBy": "anay",
"amount": 10,
"transactionType": "CR",
"description": "desc",
"type": "ALLOCATE_FUND",
"transactionCode": "ALLOCATION",
"uniqueReferenceNumber": "Ref123",
"remarks": "string",
"enKashCardId": "EKCWLUAADN"
}
Request samples
curl --location --request POST '/api/v0/partner/enKashCard/balance' \
--header 'partnerId: CRM338L2H' \
--header 'Content-Type: application/json' \
--data-raw '{
"companyId": "CEKQ08TRRG",
"cardAccountId": "CAC7975",
"createdBy": "anay",
"amount": 10,
"transactionType": "CR",
"description": "desc",
"type": "ALLOCATE_FUND",
"transactionCode": "ALLOCATION",
"uniqueReferenceNumber": "Ref123",
"remarks": "string",
"enKashCardId": "EKCWLUAADN"
}'
Responses
application/json {
"code": 0,
"message": "Success",
"payload": "Funds allocated from Parent Account to Card by Admin successful"
}
Modified at 2025-08-04 11:34:33