Enkash Developer Portal
Home
Home
Login
  1. Point Management
  • 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
    • Get Cart for User
    • Search Catalog
    • Get Product Catalog Details
    • Get Product Configs (Denominations)
    • Add to cart
    • Update Cart
    • Create Order
    • Order Search
    • create order
    • Fetch Order Info by Partner order Reference id
  • Point Management
    • Overview
    • Create Event
      POST
    • Get Event
      GET
    • Update Event
      PATCH
    • Allocate Coins
      POST
    • Get Balance
      GET
  1. Point Management

Create Event

Developing
POST
/api/v0/enkash-coins/create-coins-config
This API facilitates the creation of Coin Event Configuration

Request

Authorization
Provide your bearer token in the
Authorization
header when making requests to protected resources.
Example:
Authorization: Bearer ********************
Header Params
Content-Type
string 
required
Example:
application/json
Cookie
string 
required
Example:
_cfuvid=HYP8bzh65tyJdOQA3SszmnkR5ESGtAs.KQDRP5INTTg-1720761030734-0.0.1.1-604800000; JSESSIONID=2965781B20AA96A7AA6BF5631B3BBDD8
Body Params application/json
configuration
string 
required
CUSTOM enum
companyId
string 
required
Company id of the company
event
string 
required
Event Name
amount
integer 
required
Coins Amount
Example
{
    "configuration":"DEFAULT",
    "companyId" : "CEKEKCARDS",
    "event":"MEAL_CARD_PAYMENT",
    "amount": 6
}

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/enkash-coins/create-coins-config' \
--header 'Cookie: _cfuvid=HYP8bzh65tyJdOQA3SszmnkR5ESGtAs.KQDRP5INTTg-1720761030734-0.0.1.1-604800000; JSESSIONID=2965781B20AA96A7AA6BF5631B3BBDD8' \
--header 'Content-Type: application/json' \
--data-raw '{
    "configuration":"DEFAULT",
    "companyId" : "CEKEKCARDS",
    "event":"MEAL_CARD_PAYMENT",
    "amount": 6
}'

Responses

🟢200Success
application/json
Body
payload
object 
required
coinConfigId
string 
required
configuration
string 
required
companyId
string 
required
event
string 
required
amount
integer 
required
response_code
integer 
required
response_message
string 
required
Example
{"payload":{"coinConfigId":"WCC817428","configuration":"DEFAULT","companyId":"CEKEKCARDS","event":"MEAL_CARD_PAYMENT","amount":6},"response_code":0,"response_message":"Success"}
Modified at 2025-01-08 07:36:52
Previous
Overview
Next
Get Event
Built with