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

Auth Token

POST
https://ekpayout-uat.enkash.in/oauth/token
📌
This API is used to generate a Partner Token, which is required for authentication when calling other EnKash Prepaid Card APIs. The token must be passed in the Authorization header as a Bearer token in subsequent requests

Request

Authorization
Send your HTTP requests with an
Authorization
header that contains the word Basic followed by a space and a base64-encoded string username:password
Example:
Authorization: Basic *****************
Header Params

Body Params application/x-www-form-urlencoded

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 'https://ekpayout-uat.enkash.in/oauth/token' \
--header 'Authorization: Basic <encoded-value>' \
--header 'Cookie: _cfuvid=f5yil.adja6WY54i74vh4ra.7UO0u2fMcW3Sd7nDXbM-1737528925925-0.0.1.1-604800000; JSESSIONID=3811B357B64F1FB6E0C97811B55F13AA' \
--header 'Content-Type: application/x-www-form-urlencoded' \
--data-urlencode 'username=6660686687' \
--data-urlencode 'password=Test@1234567' \
--data-urlencode 'grant_type=password' \
--data-urlencode 'clientId=CEKEY1SKIU'

Responses

🟢200Success
application/json
Body

Example
{}
Modified at 2025-12-24 16:49:36
Previous
Get All Transaction Details
Next
Create Non Reloadable Gift Card
Built with