Enkash Developer Portal
Home
Home
Login
  1. Home
  • Back to home
  • Prepaid Card APIs
  • Encryption & Decryption Guide
  • Auth Token
    POST
  • Create Card Account
    POST
  • Create Gift Card
    POST
  • Create Prepaid Card
    POST
  • Set Card PIN
    POST
  • Load Card Balance
    POST
  • Get Card Account Details
    POST
  • Generate Card OTP
    POST
  • View Card Details
    POST
  • Card Usage Controls
    POST
  • Get Card Usage Limits
    POST
  • Request Card Replacement
    POST
  • Block Card
    POST
  • Order Physical Card
    POST
  • Get Card Details
    POST
  • Get Transaction Details
    POST
  • Get All Transaction details
    POST
  1. Home

Create Prepaid Card

POST
/api/v0/partner/enKashCard
📌
This API allows to create new prepaid cards under a specified card account. It supports issuing physical or virtual cards with customizable details such as cardholder name, account type, and limits

Request

Header Params
authorization
string 
required
Provide your bearer token in the Authorization header when making requests to protected resources.
Example:
Bearer 2f68dbbf-519d-4f01-9636-e2421b68f379
partnerId
string 
required
PartnerID shared during sign-up
Example:
CRXXXXXXX
Body Params application/json
Encrypted request payload string
userId
string 
optional
Unique EnKash User ID. This is the ID assigned to a user created in a company.
companyId
string 
required
Unique EnKash Company ID. This is the ID assigned to a company onboarded on the EnKash platform.
cardAccountId
string 
required
Unique EnKash Account ID. This is the ID assigned to the account created under the company.
email
string 
optional
Email address of the user.
Match pattern:
^[a-zA-Z0-9._%+-]+@[a-zA-Z0-9.-]+\.[a-zA-Z]{2,}$
mobile
string 
optional
10-digit mobile number of the user.
>= 10 characters<= 10 characters
Match pattern:
^\d{10}$
title
string 
optional
Title of the user (e.g., Mr., Ms.).
firstName
string 
optional
First name of the user.
middleName
string 
optional
Middle name of the user.
lastName
string 
optional
Last name of the user.
gender
string 
optional
Gender of the user.
specialDate
string 
optional
Special date associated with the user (birthday date).
address
string 
optional
Primary address of the user.
address2
string 
optional
Address second line
city
string 
optional
City of the user's address.
state
string 
optional
State of the user's address.
country
string 
optional
Country of the user's address.
pincode
string 
optional
Postal code of the user's address.
documents
array[object (DocumentsDTO) {3}] 
optional
List of documents associated with the user.
docType
string 
required
Type of the document (e.g., PAN, AADHAAR).
docNo
string 
required
Document number.
docExpDate
string 
optional
Document expiration date.
physicalCard
boolean 
optional
Indicates if a physical card is required while card issuance.
physicalDeliveryAddressFlag
boolean 
optional
Indicates if the delivery address is different from the primary address
deliveryAddress
string 
optional
Primary delivery address
deliveryAddress2
string 
optional
Second line of delivery address
deliveryCity
string 
optional
City of the delivery address.
deliveryState
string 
optional
State of the delivery address.
deliveryCountry
string 
optional
Country of the delivery address.
deliveryPincode
string 
optional
Postal code of the delivery address.
Example
{
  "companyId": "CEKEP5GSGP",
  "cardAccountId": "CABFIPS",
  "email": "anay.soni12@enkash.com",
  "mobile": "6001098801",
  "title": "Mr",
  "firstName": "johny",
  "lastName": "bateman",
  "gender": "M",
  "address": "cda block",
  "address2": "ab colony",
  "city": "kota",
  "state": "Rajasthan",
  "country": "India",
  "pincode": "323307",
  "primaryEnKashCard": false,
  "physicalCard": true,
  "loadAmount": 10,
  "remarks": "string",
  "physicalDeliveryAddressFlag": true,
  "deliveryAddress": "test",
  "deliveryAddress2": "test",
  "deliveryCity": "test",
  "deliveryState": "test",
  "deliveryCountry": "test",
  "deliveryPincode": "323309",
  "documents": [
    {
      "docType": "PAN",
      "docNo": "CPNPN9977R"    }
  ],
  "specialDate" : "02-09-2001"
}

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' \
--header 'authorization: Bearer 2f68dbbf-519d-4f01-9636-e2421b68f379 ' \
--header 'partnerId: CRXXXXXXX' \
--header 'Content-Type: application/json' \
--data-raw '{
  "companyId": "CEKEP5GSGP",
  "cardAccountId": "CABFIPS",
  "email": "anay.soni12@enkash.com",
  "mobile": "6001098801",
  "title": "Mr",
  "firstName": "johny",
  "lastName": "bateman",
  "gender": "M",
  "address": "cda block",
  "address2": "ab colony",
  "city": "kota",
  "state": "Rajasthan",
  "country": "India",
  "pincode": "323307",
  "primaryEnKashCard": false,
  "physicalCard": true,
  "loadAmount": 10,
  "remarks": "string",
  "physicalDeliveryAddressFlag": true,
  "deliveryAddress": "test",
  "deliveryAddress2": "test",
  "deliveryCity": "test",
  "deliveryState": "test",
  "deliveryCountry": "test",
  "deliveryPincode": "323309",
  "documents": [
    {
      "docType": "PAN",
      "docNo": "CPNPN9977R"    }
  ],
  "specialDate" : "02-09-2001"
}'

Responses

🟢200OK
application/json
Body
enKashCardId
string 
optional
userId
string 
optional
cardAccountId
string 
optional
token
string 
optional
maskedNumber
string 
optional
expiryMonth
string 
optional
expiryYear
string 
optional
email
string 
optional
mobile
string 
optional
title
string 
optional
firstName
string 
optional
lastName
string 
optional
gender
string 
optional
specialDate
string 
optional
address
string 
optional
address2
string 
optional
city
string 
optional
state
string 
optional
country
string 
optional
pincode
string 
optional
mtd
number 
optional
usedMtd
number 
optional
dtd
number 
optional
usedDtd
number 
optional
ytd
number 
optional
usedYtd
number 
optional
otbBalance
number 
optional
primaryCard
boolean 
optional
prepaidCard
boolean 
optional
physicalCard
boolean 
optional
deleted
boolean 
optional
closedLoopCard
boolean 
optional
createdOn
string <date-time>
optional
modifiedOn
string <date-time>
optional
cardStatus
object (EnumModel) 
optional
name
object 
optional
label
string 
optional
description
string 
optional
subModels
array[object (SubModel)] 
optional
minValue
number 
optional
maxValue
number 
optional
kycStatus
object (EnumModel) 
optional
cardProgramme
enum<string> 
optional
Allowed values:
FBENKASHSBMMAXIMUSTRANSCORPENKASHFINCARE
idProof
string 
optional
addressProof
string 
optional
pan
string 
optional
useAccountFunds
boolean 
optional
blockCode
enum<string> 
optional
Allowed values:
AZCDBEFGHIJKLMNOPQRSTUVWXYCOWO
remarks
string 
optional
partnerLogo
string 
optional
cardKitNumber
string 
optional
physicalCardRequestDate
string <date-time>
optional
physicalDeliveryAddressFlag
boolean 
optional
deliveryAddress
string 
optional
deliveryAddress2
string 
optional
deliveryCity
string 
optional
deliveryState
string 
optional
deliveryCountry
string 
optional
deliveryPincode
string 
optional
cardActivated
boolean 
optional
binType
object (EnumModel) 
optional
shareCode
string 
optional
kycReason
string 
optional
loadAmount
number 
optional
companyId
string 
optional
middleName
string 
optional
cardKitMasterId
integer <int64>
optional
extEntityId
string 
optional
switchProvider
enum<string> 
optional
Allowed values:
M2PMAXIMUSEK_CLOSEDLOOP_CREDITM2P_TRANSCORPM2P_FINCARE
kycSubmittedOn
string <date-time>
optional
kycType
object (EnumModel) 
optional
accountBalance
number 
optional
physicalCardAllowed
boolean 
optional
kitType
object (EnumModel) 
optional
surchargeAmt
number 
optional
panValidated
boolean 
optional
invoiceNumber
string 
optional
usedLtd
number 
optional
latestTnCVersionAccepted
boolean 
optional
latestKeyFactAccepted
boolean 
optional
latestTnCVersionAcceptedForPrimaryCard
boolean 
optional
latestKeyFactAcceptedCardForPrimaryCard
boolean 
optional
tncVersionMasterId
string 
optional
tncVersion
string 
optional
tncUrl
string 
optional
keyFactSheetUrl
string 
optional
acceptanceByDate
string <date-time>
optional
primaryEnKashCardId
string 
optional
primaryEnKashCardUserId
string 
optional
virtualAccountNumber
string 
optional
limitAllocatedLtd
number 
optional
posAllowed
boolean 
optional
posAllowedAdmin
boolean 
optional
atmAllowed
boolean 
optional
atmAllowedAdmin
boolean 
optional
onlineAllowed
boolean 
optional
onlineAllowedAdmin
boolean 
optional
ckycNumber
string 
optional
liveImage
boolean 
optional
livenessScore
number 
optional
faceMatch
string 
optional
faceMatchScore
number 
optional
ckycAccountType
string 
optional
unallocateFundAllowed
boolean 
optional
useParentFundAllowed
boolean 
optional
defaultCardImage
string 
optional
vcipLink
string 
optional
qrImageUrl
string 
optional
vcipId
string 
optional
minKycOtpVerified
boolean 
optional
kycSubStatus
object (EnumModel) 
optional
enKashSupportEmail
string 
optional
enKashSupportMobile
string 
optional
companyName
string 
optional
accountType
object (EnumModel) 
optional
lastAllocatedAmount
number 
optional
holdBalance
number 
optional
enableHoldAmount
boolean 
optional
enkashCardTxnId
string 
optional
unAllocateHoldBalance
number 
optional
tncUnAllocateAllowed
boolean 
optional
tncUnAllocateAccepted
boolean 
optional
minTransactionAmount
number 
optional
totalRewardsReceived
integer <int32>
optional
latestRewardType
enum<string> 
optional
Allowed values:
OCCASIONPERFORMANCE
rewardPointsReceived
number 
optional
vkycAllowed
boolean 
optional
ckycEnabled
boolean 
optional
Example
{
    "code": 0,
    "message": "Success",
    "payload": {
        "enKashCardId": "EKCMB7KAEW",
        "userId": "EKSGAY08",
        "cardAccountId": "CABFIPS",
        "token": "131a73dc83713e010467",
        "maskedNumber": "XXXX XXXX XXXX 8801",
        "expiryMonth": "01",
        "expiryYear": "2027",
        "email": "anay.soni12@enkash.com",
        "mobile": "6001098801",
        "title": "Mr",
        "firstName": "Johny",
        "lastName": "Bateman",
        "gender": "M",
        "specialDate": "02-09-2001",
        "address": "cda block",
        "address2": "ab colony",
        "city": "kota",
        "state": "Rajasthan",
        "country": "India",
        "pincode": "323307",
        "usedMtd": 0,
        "usedDtd": 0,
        "usedYtd": 0,
        "otbBalance": 0,
        "primaryCard": true,
        "prepaidCard": true,
        "physicalCard": true,
        "deleted": false,
        "closedLoopCard": false,
        "createdOn": "Jan 29, 2025 1:50:28 PM",
        "modifiedOn": "Jan 29, 2025 1:50:28 PM",
        "cardStatus": {
            "name": "UL",
            "label": "UnLocked"
        },
        "kycStatus": {
            "name": "NOT_UPLOADED",
            "label": "Not Uploaded"
        },
        "cardProgramme": "ENKASH",
        "pan": "CPNPN9977R",
        "useAccountFunds": false,
        "blockCode": "A",
        "remarks": "string",
        "partnerLogo": "https://imagesbox.enkash.in/IMAGES/EnkashLogo.png",
        "cardKitNumber": "card_0da321f7-b89d-44d6-b8f7-988c02f44d75",
        "physicalCardRequestDate": "Jan 29, 2025 1:50:28 PM",
        "physicalDeliveryAddressFlag": true,
        "deliveryAddress": "test",
        "deliveryAddress2": "test",
        "deliveryCity": "test",
        "deliveryState": "test",
        "deliveryCountry": "test",
        "deliveryPincode": "323309",
        "cardActivated": false,
        "binType": {
            "name": "PREPAID",
            "label": "Prepaid Card"
        },
        "loadAmount": 10,
        "companyId": "CEKEP5GSGP",
        "cardKitMasterId": 1,
        "extEntityId": "EXTG5PGLLJOER",
        "switchProvider": "PAY_NEXT",
        "accountBalance": 0,
        "physicalCardAllowed": false,
        "kitType": {
            "name": "RUPAY",
            "label": "Rupay"
        },
        "surchargeAmt": 0,
        "panValidated": false,
        "usedLtd": 0,
        "latestTnCVersionAccepted": true,
        "latestKeyFactAccepted": true,
        "latestTnCVersionAcceptedForPrimaryCard": true,
        "latestKeyFactAcceptedCardForPrimaryCard": true,
        "tncVersionMasterId": "TVMWVTUADW",
        "tncUrl": "imagesbox.enkash.in/IMAGES/PPI_T&C.pdf",
        "acceptanceByDate": {
            "date": {
                "year": 2023,
                "month": 1,
                "day": 5
            },
            "time": {
                "hour": 6,
                "minute": 55,
                "second": 56,
                "nano": 884000000
            }
        },
        "virtualAccountNumber": "ENKASHEDENEKCMB7KAEW",
        "limitAllocatedLtd": 0,
        "posAllowed": false,
        "posAllowedAdmin": false,
        "atmAllowed": false,
        "atmAllowedAdmin": false,
        "onlineAllowed": false,
        "onlineAllowedAdmin": false,
        "liveImage": false,
        "cKycEnabled": false,
        "unallocateFundAllowed": true,
        "useParentFundAllowed": true,
        "defaultCardImage": "https://imagesbox.enkash.in/IMAGES/enkash_ppi.png",
        "minKycOtpVerified": false,
        "enKashSupportEmail": "support@enkash.com",
        "enKashSupportMobile": "1234567890",
        "companyName": "Anay Prepaid",
        "vKycAllowed": true,
        "accountType": {
            "name": "RELOADABLE_GPR",
            "label": "Reloadable GPR",
            "description": "Prepaid"
        },
        "lastAllocatedAmount": 0,
        "holdBalance": 0,
        "enkashCardTxnId": "ECT1LDDPS37CJ",
        "unAllocateHoldBalance": 0,
        "tncUnAllocateAllowed": false,
        "tncUnAllocateAccepted": false
    }
}
🟢200OK
Modified at 2025-05-26 17:22:25
Previous
Create Gift Card
Next
Set Card PIN
Built with