Enkash Developer Portal
Home
Home
Login
  1. Non Reloadable Gift Cards
  • Back to home
  • APIs - Prepaid Card
  • Encryption & Decryption Guide
  • Reloadable Prepaid Cards
    • Auth Token
    • Create Reloadable Prepaid Card
    • Set Card PIN
    • Generate OTP
    • View Card Details
    • VKYC Link Generation
    • VKYC Status
    • 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

View Card CVV

POST
/api/v0/partner/enKashCard/viewCard
📌
Retrieve the CVV for a card securely to complete card-not-present transactions/online payment, when required.

Request

Header Params

Body Params application/json

Example
{
  "enKashCardId": "EKC94AEX89",
  "cardAccountId": "CAA8W45",
  "otpRequestId": "EC12345",
  "OTP": "123456"
}

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/viewCard' \
--header 'authorization: Bearer 2f68dbbf-519d-4f01-9636-e2421b68f379' \
--header 'partnerId: CRXXXXXXX' \
--header 'Content-Type: application/json' \
--data-raw '{
  "enKashCardId": "EKC94AEX89",
  "cardAccountId": "CAA8W45",
  "otpRequestId": "EC12345",
  "OTP": "123456"
}'

Responses

🟢200OK
application/json
Body

Example
{
    "response_code": 0,
    "response_message": "Success",
    "payload": {
        "cvv": "854",
        "cardHolderName": "anay test"
    }
}
Modified at 2025-12-24 16:40:52
Previous
View Card Details
Next
Order Physical Card
Built with