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

Create Non Reloadable Gift Card

POST
/api/v0/partner/enKashCard
📌
This API allows you to create new gift cards under a specified card account. It supports issuing physical or virtual cards with configurable details such as cardholder name and account type. A load amount is mandatory to create a gift card.

Request

Header Params

Body Params application/json

Example
{
    "userId": "string",
    "companyId": "string",
    "cardAccountId": "string",
    "email": "string",
    "mobile": "stringstri",
    "title": "string",
    "firstName": "string",
    "middleName": "string",
    "lastName": "string",
    "gender": "string",
    "specialDate": "string",
    "loadAmount": "string"
}

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 '{
    "userId": "string",
    "companyId": "string",
    "cardAccountId": "string",
    "email": "string",
    "mobile": "stringstri",
    "title": "string",
    "firstName": "string",
    "middleName": "string",
    "lastName": "string",
    "gender": "string",
    "specialDate": "string",
    "loadAmount": "string"
}'

Responses

🟢200OK
application/json
Body

Example
{
    "code": 0,
    "message": "Success",
    "payload": {
        "enKashCardId": "EKC94AEX89",
        "userId": "EK94JCMP",
        "cardAccountId": "CAA8W45",
        "maskedNumber": "XXXX XXXX XXXX 3211",
        "expiryMonth": "01",
        "expiryYear": "2027",
        "email": "[email protected]",
        "mobile": "6876543211",
        "title": "Mr",
        "firstName": "Johnny",
        "lastName": "Dew",
        "gender": "M",
        "specialDate": "2000-02-14",
        "address": "123 Street Name",
        "address2": "Apt 456",
        "city": "Pune",
        "state": "Maharashtra",
        "country": "India",
        "pincode": "323908",
        "usedMtd": 0,
        "usedDtd": 0,
        "usedYtd": 0,
        "otbBalance": 500,
        "createdOn": "Jan 29, 2025 11:57:51 AM",
        "modifiedOn": "Jan 29, 2025 11:57:51 AM",
        "cardStatus": {
            "name": "UL",
            "label": "UnLocked"
        },
        "kycStatus": {
            "name": "NOT_UPLOADED",
            "label": "Not Uploaded"
        },
        "blockCode": "A",
        "remarks": "This is a test card",
        "physicalDeliveryAddressFlag": true,
        "deliveryAddress": "789 Delivery St",
        "deliveryAddress2": "Suite 101",
        "deliveryCity": "Mumbai",
        "deliveryState": "Maharashtra",
        "deliveryCountry": "India",
        "deliveryPincode": "323307",
        "cardActivated": false,
        "binType": {
            "name": "GIFT_CARD",
            "label": "Gift Card"
        },
        "loadAmount": 500,
        "companyId": "CEKEP5GSGP",
        "accountBalance": 99500,
        "latestTnCVersionAccepted": true,
        "latestKeyFactAccepted": false,
        "latestTnCVersionAcceptedForPrimaryCard": true,
        "latestKeyFactAcceptedCardForPrimaryCard": true,
        "tncVersionMasterId": "TVMLP1VK8X",
        "tncUrl": "https://ekpayout-uat.enkash.in/tu/0xl5b7ci",
        "virtualAccountNumber": "ENKASHEDTCEKC94AEX89",
        "limitAllocatedLtd": 0,
        "posAllowed": false,
        "posAllowedAdmin": false,
        "atmAllowed": false,
        "atmAllowedAdmin": false,
        "onlineAllowed": false,
        "onlineAllowedAdmin": false,
        "liveImage": false,
        "cKycEnabled": false,
        "unallocateFundAllowed": false,
        "useParentFundAllowed": false,
        "defaultCardImage": "https://imagesbox.enkash.in/IMAGES/enkash_ppi.png",
        "minKycOtpVerified": false,
        "enKashSupportEmail": "[email protected]",
        "enKashSupportMobile": "1234567890",
        "companyName": "Anay Gift",
        "vKycAllowed": false,
        "accountType": {
            "name": "GIFT",
            "label": "Gift",
            "description": "Gift"
        },
        "lastAllocatedAmount": 0,
        "holdBalance": 0,
        "enkashCardTxnId": "ECTNY27ELILVP",
        "tncUnAllocateAllowed": false,
        "tncUnAllocateAccepted": false
    }
}
Modified at 2025-12-31 06:09:26
Previous
Auth Token
Next
Set Card PIN
Built with