When a purchase is happening, while the purchase data is getting captured, the API should also capture the product details (Category, Sub-category, Brand, Product Name, SKU, Variant), and add it to the Kreesalis Product database for that client if the product information does not already exist.

For adding products to kreesalis DB,

1.The Clients to which products need to be added should enable Allow API. Respective Client Id and Client Secret should be provided in Headers.
2.The product can be added to either sales or reward or both the categories.
3.Product's Title, model no, brand, pack size, metrics, either sales or reward product category are mandatory and title should be unique across the sales or reward to which the product is getting added for that client.
4.Metrics should be one of the predefined metrics(l,ml,kl,g,mg,kg,units)

Log in to see full request history

👍

Success - Product created successfully.

{
"title": "ok",
"status_code": 0,
"status_message": "Product created successfully!!"
}

🚧

Error - Mandatory check for Title, Brand, Model No, Reward item points pack size, Reward item points metric

{
"title": "errors",
"status_code": 1,
"status_message": [
"Reward item points pack size must be given please",
"Reward item points pack size is not a number",
"Reward item points metric must be given please",
"Reward item points metric Not a valid metric",
"Title must be given please",
"Model no must be given please",
"Brand must be given please"
]

🚧

Error - Title has already taken

{
"title": "errors",
"status_code": 1,
"status_message": [
"Title has already been taken"]
}

🚧

Error - Reward item points metric Not a valid metric

{
"title": "errors",
"status_code": 1,
"status_message": [
"Reward item points metric Not a valid metric" ]
}

Body Params
string
required
Defaults to Sanitizer

Product name should be given and should be unique across the client.

string
Defaults to active

Should give one of the options - Active/Inactive

string
Defaults to 1

Listing id should be given here.

string
Defaults to 2

Delivery time of the product should be given.

string
Defaults to AP

Geographic reach of the product

string
required
Defaults to Essentials/Grocery

This param adds the product to the Reward category. Either Category or reward_product_category is mandatory.

string
required
Defaults to M_01

Model number of the product

string
required
Defaults to Apollo

Brand of the product is given.

string
required
Defaults to 5

Pack size of the product.

string
required
Defaults to units

Metric should be one of the pre defined metrics {l,ml,kl,g,mg,kg,units}

string
required
Defaults to Electronics/Mobiles

This param adds the product to the Sales category. Either Category or reward_product_category is mandatory.

json
required
Defaults to { "reward_items": [ { "title": "Clothing", "status": "active", "listing_id": "2223", "delivery_time": "7", "geographic_reach": "Mumbai", "category": "Kids wear", "reward_product_category": "Clothing", "model_no": "785469", "brand": "Ziva", "reward_item_points_attributes": [ { "pack_size": "5", "metric": "units", "mrp": 10000, "price": 9999, "available_quantity": 10, "variant_id": 78267 } ] } ] }
Headers
string
Defaults to 91961791ac3bbd6b
string
Defaults to aebebdf6880282a45841519cc621d937
Responses

Language
Click Try It! to start a request and see the response here! Or choose an example:
application/json