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

Order Physical Card

POST
/api/v0/partner/enKashCard/physicalCard
📌
This API is used to generate and manage physical prepaid cards. It processes requests for issuing new physical cards and provides the necessary details for card creation and delivery

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
cardAccountId
string 
required
Card Account Id
enKashCardId
string 
required
Enkash Card Id
address
string 
required
Address of card holder
address2
string 
required
Address 2 of card holder
city
string 
required
City of card holder residence
state
string 
required
State of card holder residence
country
string 
required
Country of card holder
pincode
string 
required
Pin Code of the residence
otpRequestId
string 
optional
Unique OTP request Id
otp
string 
optional
otpRequired
boolean 
required
if OTP is required or not. - to be passed as false
otpMedium
enum<string> 
optional
MOBILE
Allowed values:
MOBILEMFA
mfaCode
string 
optional
Example
{
    "cardAccountId": "string",
    "enKashCardId": "string",
    "address": "string",
    "address2": "string",
    "city": "string",
    "state": "string",
    "country": "string",
    "pincode": "string",
    "otpRequestId": "string",
    "otp": "string",
    "otpRequired": true,
    "otpMedium": "MOBILE",
    "mfaCode": "string"
}

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/physicalCard' \
--header 'authorization: Bearer 2f68dbbf-519d-4f01-9636-e2421b68f379' \
--header 'partnerId:  CRXXXXXXX' \
--header 'Content-Type: application/json' \
--data-raw '{
    "cardAccountId": "string",
    "enKashCardId": "string",
    "address": "string",
    "address2": "string",
    "city": "string",
    "state": "string",
    "country": "string",
    "pincode": "string",
    "otpRequestId": "string",
    "otp": "string",
    "otpRequired": true,
    "otpMedium": "MOBILE",
    "mfaCode": "string"
}'

Responses

🟢200OK
application/json
Body
code
integer 
required
message
string 
required
payload
string 
required
Example
{
    "code": 0,
    "message": "Success",
    "payload": "Success"
}
Modified at 2025-05-26 17:23:20
Previous
Block Card
Next
Get Card Details
Built with