Enkash Developer Portal
Home
Home
Login
  1. Reloadable Prepaid Cards
  • Back to home
  • APIs - Prepaid Card
  • Encryption & Decryption Guide
  • Reloadable Prepaid Cards
    • KYC Status Handling Guide
    • T&C Acceptance Flow Copy
    • Auth Token
      POST
    • Create Reloadable Prepaid Card
      POST
    • VKYC Link Generation
      GET
    • VKYC Status
      GET
    • Set Card PIN
      POST
    • Generate OTP
      POST
    • View Card Details
      POST
    • View Card CVV
      POST
    • Update Card Limits & Controls
      POST
    • Get Card Limits & Controls
      POST
    • Order Physical Card
      POST
    • Get Card Balance
      POST
    • Load Money from Balance
      POST
    • Request Card Replacement
      POST
    • Block Card
      POST
    • Get Transaction Details
      POST
    • Get All Transaction Details
      POST
  • Non Reloadable Gift Cards
    • Auth Token
    • Create Non Reloadable Gift Card
    • Set Card PIN
    • Generate OTP
    • View Card Details
    • View Card CVV
    • Order Physical Card
    • Get Card Balance
    • Get Transaction Details
    • Get All Transaction details
Home
Home
Login
  1. Reloadable Prepaid Cards

Create Reloadable Prepaid Card

POST
/api/v0/partner/enKashCard
📌
This API allows you to create new prepaid cards, supporting both physical and virtual cards.

Request

Header Params

Body Params application/json

Example
{
  "companyId": "CEKEP5GSGP",
  "cardAccountId": "CABFIPS",
  "email": "[email protected]",
  "mobile": "6001098801",
  "title": "Mr",
  "firstName": "johny",
  "lastName": "bateman",
  "gender": "M",
  "primaryEnKashCard": false,
  "physicalCard": true,
  "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 Code 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": "[email protected]",
  "mobile": "6001098801",
  "title": "Mr",
  "firstName": "johny",
  "lastName": "bateman",
  "gender": "M",
  "primaryEnKashCard": false,
  "physicalCard": true,
  "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

Examples
{
    "code": 0,
    "message": "Success",
    "payload": {
        "enKashCardId": "EKCWLUAADN",
        "cardAccountId": "CAC7975",
        "title": "Mr",
        "firstName": "Kris",
        "lastName": "Singh",
        "otbBalance": 0,
        "cardStatus": {
            "name": "UL",
            "label": "UnLocked"
        },
        "kycStatus": {
            "name": "NOT_UPLOADED",
            "label": "Not Uploaded"
        },
        "partnerTncUrl": "string"
    }
}
🟢200OK
Modified at 2025-12-24 16:00:16
Previous
Auth Token
Next
VKYC Link Generation
Built with