EnKash Developer Portal
Home
Home
Login
  1. Redemption
  • Back to home
  • APIs - Reward
  • Token APIs
    • Authentication
    • Single Sign On (SSO)
  • Reward Allocation
    • Create And Allocate Points
    • Bulk Create And Allocate Rewards
    • Get Reward Account Details
    • Get Reward Transaction Details
    • Get User Details
    • Get User Card Details
  • Incentive Allocation
    • Incentive Create And Allocation
    • Get Incentive Transaction details
    • Get User Details
  • Redemption
    • User Authentication
      POST
    • Search Catalog
      POST
    • Product Details
      GET
    • create order
      POST
    • Fetch Order Info by Partner order Reference id
      GET
  • Point Management
    • Overview
    • Create Event
    • Get Event
    • Update Event
    • Allocate Coins
    • Get Balance
  1. Redemption

create order

Developing
POST
/api/v0/partner/create-order

Request

Authorization
Provide your bearer token in the
Authorization
header when making requests to protected resources.
Example:
Authorization: Bearer ********************
Header Params

Body Params application/json

Example
{
    "denomination": 100,
    "orderReferenceId": "123445",
    "productCatalogId": "PC06534444221NJ1",
    "quantity": 1
}

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/api/v0/partner/create-order' \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data-raw '{
    "denomination": 100,
    "orderReferenceId": "123445",
    "productCatalogId": "PC06534444221NJ1",
    "quantity": 1
}'

Responses

🟢200Success
application/json
Body

Example
{}
Modified at 2026-04-13 07:47:19
Previous
Product Details
Next
Fetch Order Info by Partner order Reference id
Built with