Enkash Developer Portal
Home
Home
Login
  1. Redemption
  • Back to home
  • Reward APIs
  • 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
    • Get Cart for User
      GET
    • Search Catalog
      POST
    • Get Product Catalog Details
      GET
    • Get Product Configs (Denominations)
      GET
    • Add to cart
      POST
    • Update Cart
      PATCH
    • Create Order
      POST
    • Order Search
      POST
    • create order
      POST
    • Fetch Order Info by Partner order Reference id
      POST
  • 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

Header Params
Content-Type
string 
required
Example:
application/json
Body Params application/json
denomination
integer 
required
orderReferenceId
string 
required
productCatalogId
string 
required
quantity
integer 
required
Example
{
    "denomination": 0,
    "orderReferenceId": "string",
    "productCatalogId": "string",
    "quantity": 0
}

Request 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://test.your-api-server.com/api/v0/partner/create-order' \
--header 'Content-Type: application/json' \
--data-raw '{
    "denomination": 0,
    "orderReferenceId": "string",
    "productCatalogId": "string",
    "quantity": 0
}'

Responses

🟢200Success
application/json
Body
object {0}
Example
{}
Modified at 2025-01-13 10:22:55
Previous
Order Search
Next
Fetch Order Info by Partner order Reference id
Built with