curl --request POST \
--url https://api.aasaan.shop/api/v1/stores/products \
--header 'Content-Type: application/json' \
--header 'x-api-key: <api-key>' \
--data '
{
"name": "Head & Shoulders Anti Hairfall Anti Dandruff Shampoo",
"sku": "000-000-000-000",
"quantity": 1,
"weight": 500,
"categories": [
{
"id": "636f2e876e9de14bfe1b02f1"
}
],
"description": "Now, ensure the good health of your hair with Head & Shoulders Anti Hairfall Anti Dandruff Shampoo that strengthens hair from its roots and cures dandruff. Be it dry, frizzy, or damaged, this shampoo can bring back the younger days of your hair within just a few days. The shampoo is richly indulgent and improves the experience of washing your hair. It makes your hair dandruff-free up to 100%. Do not fret over chemicals as the product is gentle in use and can be used every day.",
"shortDescription": "Anti Dandruff Shampoo that strengthens hair from its roots and cures dandruff",
"active": true,
"outOfStock": false,
"width": 100,
"height": 200,
"depth": 20,
"isShippingEnabled": true,
"isProductLevelTaxEnabled": true,
"displayOrder": 1,
"tax": {
"CGST": 2,
"SGST": 2,
"GST": 4
},
"seo": {
"title": "Head and Shoulders",
"description": "Head & Shoulders Anti Hairfall Anti Dandruff Shampoo that strengthens hair",
"image": {
"url": "https://images.aasaan.app/123412421",
"type": "image/png"
}
},
"variantAttributeValues": [
{
"name": "color",
"value": [
"blue, yellow, green"
]
}
],
"prices": [
{
"channelId": "636f2e876e9de14bfe1b02f1",
"salesPrice": "45",
"regularPrice": "50",
"hide": false
}
],
"quantities": [
{
"warehouseId": "636f2e876e9de14bfe1b02f1",
"quantity": "45"
}
],
"images": [
{
"id": 0,
"url": "https://images.aasaan.app/123412421",
"type": "https://images.aasaan.app/123412421"
}
],
"brand": {
"id": "636f2e876e9de14bfe1b02f2"
}
}
'import requests
url = "https://api.aasaan.shop/api/v1/stores/products"
payload = {
"name": "Head & Shoulders Anti Hairfall Anti Dandruff Shampoo",
"sku": "000-000-000-000",
"quantity": 1,
"weight": 500,
"categories": [{ "id": "636f2e876e9de14bfe1b02f1" }],
"description": "Now, ensure the good health of your hair with Head & Shoulders Anti Hairfall Anti Dandruff Shampoo that strengthens hair from its roots and cures dandruff. Be it dry, frizzy, or damaged, this shampoo can bring back the younger days of your hair within just a few days. The shampoo is richly indulgent and improves the experience of washing your hair. It makes your hair dandruff-free up to 100%. Do not fret over chemicals as the product is gentle in use and can be used every day.",
"shortDescription": "Anti Dandruff Shampoo that strengthens hair from its roots and cures dandruff",
"active": True,
"outOfStock": False,
"width": 100,
"height": 200,
"depth": 20,
"isShippingEnabled": True,
"isProductLevelTaxEnabled": True,
"displayOrder": 1,
"tax": {
"CGST": 2,
"SGST": 2,
"GST": 4
},
"seo": {
"title": "Head and Shoulders",
"description": "Head & Shoulders Anti Hairfall Anti Dandruff Shampoo that strengthens hair",
"image": {
"url": "https://images.aasaan.app/123412421",
"type": "image/png"
}
},
"variantAttributeValues": [
{
"name": "color",
"value": ["blue, yellow, green"]
}
],
"prices": [
{
"channelId": "636f2e876e9de14bfe1b02f1",
"salesPrice": "45",
"regularPrice": "50",
"hide": False
}
],
"quantities": [
{
"warehouseId": "636f2e876e9de14bfe1b02f1",
"quantity": "45"
}
],
"images": [
{
"id": 0,
"url": "https://images.aasaan.app/123412421",
"type": "https://images.aasaan.app/123412421"
}
],
"brand": { "id": "636f2e876e9de14bfe1b02f2" }
}
headers = {
"x-api-key": "<api-key>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {'x-api-key': '<api-key>', 'Content-Type': 'application/json'},
body: JSON.stringify({
name: 'Head & Shoulders Anti Hairfall Anti Dandruff Shampoo',
sku: '000-000-000-000',
quantity: 1,
weight: 500,
categories: [{id: '636f2e876e9de14bfe1b02f1'}],
description: 'Now, ensure the good health of your hair with Head & Shoulders Anti Hairfall Anti Dandruff Shampoo that strengthens hair from its roots and cures dandruff. Be it dry, frizzy, or damaged, this shampoo can bring back the younger days of your hair within just a few days. The shampoo is richly indulgent and improves the experience of washing your hair. It makes your hair dandruff-free up to 100%. Do not fret over chemicals as the product is gentle in use and can be used every day.',
shortDescription: 'Anti Dandruff Shampoo that strengthens hair from its roots and cures dandruff',
active: true,
outOfStock: false,
width: 100,
height: 200,
depth: 20,
isShippingEnabled: true,
isProductLevelTaxEnabled: true,
displayOrder: 1,
tax: {CGST: 2, SGST: 2, GST: 4},
seo: {
title: 'Head and Shoulders',
description: 'Head & Shoulders Anti Hairfall Anti Dandruff Shampoo that strengthens hair',
image: {url: 'https://images.aasaan.app/123412421', type: 'image/png'}
},
variantAttributeValues: [{name: 'color', value: ['blue, yellow, green']}],
prices: [
{
channelId: '636f2e876e9de14bfe1b02f1',
salesPrice: '45',
regularPrice: '50',
hide: false
}
],
quantities: [{warehouseId: '636f2e876e9de14bfe1b02f1', quantity: '45'}],
images: [
{
id: 0,
url: 'https://images.aasaan.app/123412421',
type: 'https://images.aasaan.app/123412421'
}
],
brand: {id: '636f2e876e9de14bfe1b02f2'}
})
};
fetch('https://api.aasaan.shop/api/v1/stores/products', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.aasaan.shop/api/v1/stores/products",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "POST",
CURLOPT_POSTFIELDS => json_encode([
'name' => 'Head & Shoulders Anti Hairfall Anti Dandruff Shampoo',
'sku' => '000-000-000-000',
'quantity' => 1,
'weight' => 500,
'categories' => [
[
'id' => '636f2e876e9de14bfe1b02f1'
]
],
'description' => 'Now, ensure the good health of your hair with Head & Shoulders Anti Hairfall Anti Dandruff Shampoo that strengthens hair from its roots and cures dandruff. Be it dry, frizzy, or damaged, this shampoo can bring back the younger days of your hair within just a few days. The shampoo is richly indulgent and improves the experience of washing your hair. It makes your hair dandruff-free up to 100%. Do not fret over chemicals as the product is gentle in use and can be used every day.',
'shortDescription' => 'Anti Dandruff Shampoo that strengthens hair from its roots and cures dandruff',
'active' => true,
'outOfStock' => false,
'width' => 100,
'height' => 200,
'depth' => 20,
'isShippingEnabled' => true,
'isProductLevelTaxEnabled' => true,
'displayOrder' => 1,
'tax' => [
'CGST' => 2,
'SGST' => 2,
'GST' => 4
],
'seo' => [
'title' => 'Head and Shoulders',
'description' => 'Head & Shoulders Anti Hairfall Anti Dandruff Shampoo that strengthens hair',
'image' => [
'url' => 'https://images.aasaan.app/123412421',
'type' => 'image/png'
]
],
'variantAttributeValues' => [
[
'name' => 'color',
'value' => [
'blue, yellow, green'
]
]
],
'prices' => [
[
'channelId' => '636f2e876e9de14bfe1b02f1',
'salesPrice' => '45',
'regularPrice' => '50',
'hide' => false
]
],
'quantities' => [
[
'warehouseId' => '636f2e876e9de14bfe1b02f1',
'quantity' => '45'
]
],
'images' => [
[
'id' => 0,
'url' => 'https://images.aasaan.app/123412421',
'type' => 'https://images.aasaan.app/123412421'
]
],
'brand' => [
'id' => '636f2e876e9de14bfe1b02f2'
]
]),
CURLOPT_HTTPHEADER => [
"Content-Type: application/json",
"x-api-key: <api-key>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"strings"
"net/http"
"io"
)
func main() {
url := "https://api.aasaan.shop/api/v1/stores/products"
payload := strings.NewReader("{\n \"name\": \"Head & Shoulders Anti Hairfall Anti Dandruff Shampoo\",\n \"sku\": \"000-000-000-000\",\n \"quantity\": 1,\n \"weight\": 500,\n \"categories\": [\n {\n \"id\": \"636f2e876e9de14bfe1b02f1\"\n }\n ],\n \"description\": \"Now, ensure the good health of your hair with Head & Shoulders Anti Hairfall Anti Dandruff Shampoo that strengthens hair from its roots and cures dandruff. Be it dry, frizzy, or damaged, this shampoo can bring back the younger days of your hair within just a few days. The shampoo is richly indulgent and improves the experience of washing your hair. It makes your hair dandruff-free up to 100%. Do not fret over chemicals as the product is gentle in use and can be used every day.\",\n \"shortDescription\": \"Anti Dandruff Shampoo that strengthens hair from its roots and cures dandruff\",\n \"active\": true,\n \"outOfStock\": false,\n \"width\": 100,\n \"height\": 200,\n \"depth\": 20,\n \"isShippingEnabled\": true,\n \"isProductLevelTaxEnabled\": true,\n \"displayOrder\": 1,\n \"tax\": {\n \"CGST\": 2,\n \"SGST\": 2,\n \"GST\": 4\n },\n \"seo\": {\n \"title\": \"Head and Shoulders\",\n \"description\": \"Head & Shoulders Anti Hairfall Anti Dandruff Shampoo that strengthens hair\",\n \"image\": {\n \"url\": \"https://images.aasaan.app/123412421\",\n \"type\": \"image/png\"\n }\n },\n \"variantAttributeValues\": [\n {\n \"name\": \"color\",\n \"value\": [\n \"blue, yellow, green\"\n ]\n }\n ],\n \"prices\": [\n {\n \"channelId\": \"636f2e876e9de14bfe1b02f1\",\n \"salesPrice\": \"45\",\n \"regularPrice\": \"50\",\n \"hide\": false\n }\n ],\n \"quantities\": [\n {\n \"warehouseId\": \"636f2e876e9de14bfe1b02f1\",\n \"quantity\": \"45\"\n }\n ],\n \"images\": [\n {\n \"id\": 0,\n \"url\": \"https://images.aasaan.app/123412421\",\n \"type\": \"https://images.aasaan.app/123412421\"\n }\n ],\n \"brand\": {\n \"id\": \"636f2e876e9de14bfe1b02f2\"\n }\n}")
req, _ := http.NewRequest("POST", url, payload)
req.Header.Add("x-api-key", "<api-key>")
req.Header.Add("Content-Type", "application/json")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.post("https://api.aasaan.shop/api/v1/stores/products")
.header("x-api-key", "<api-key>")
.header("Content-Type", "application/json")
.body("{\n \"name\": \"Head & Shoulders Anti Hairfall Anti Dandruff Shampoo\",\n \"sku\": \"000-000-000-000\",\n \"quantity\": 1,\n \"weight\": 500,\n \"categories\": [\n {\n \"id\": \"636f2e876e9de14bfe1b02f1\"\n }\n ],\n \"description\": \"Now, ensure the good health of your hair with Head & Shoulders Anti Hairfall Anti Dandruff Shampoo that strengthens hair from its roots and cures dandruff. Be it dry, frizzy, or damaged, this shampoo can bring back the younger days of your hair within just a few days. The shampoo is richly indulgent and improves the experience of washing your hair. It makes your hair dandruff-free up to 100%. Do not fret over chemicals as the product is gentle in use and can be used every day.\",\n \"shortDescription\": \"Anti Dandruff Shampoo that strengthens hair from its roots and cures dandruff\",\n \"active\": true,\n \"outOfStock\": false,\n \"width\": 100,\n \"height\": 200,\n \"depth\": 20,\n \"isShippingEnabled\": true,\n \"isProductLevelTaxEnabled\": true,\n \"displayOrder\": 1,\n \"tax\": {\n \"CGST\": 2,\n \"SGST\": 2,\n \"GST\": 4\n },\n \"seo\": {\n \"title\": \"Head and Shoulders\",\n \"description\": \"Head & Shoulders Anti Hairfall Anti Dandruff Shampoo that strengthens hair\",\n \"image\": {\n \"url\": \"https://images.aasaan.app/123412421\",\n \"type\": \"image/png\"\n }\n },\n \"variantAttributeValues\": [\n {\n \"name\": \"color\",\n \"value\": [\n \"blue, yellow, green\"\n ]\n }\n ],\n \"prices\": [\n {\n \"channelId\": \"636f2e876e9de14bfe1b02f1\",\n \"salesPrice\": \"45\",\n \"regularPrice\": \"50\",\n \"hide\": false\n }\n ],\n \"quantities\": [\n {\n \"warehouseId\": \"636f2e876e9de14bfe1b02f1\",\n \"quantity\": \"45\"\n }\n ],\n \"images\": [\n {\n \"id\": 0,\n \"url\": \"https://images.aasaan.app/123412421\",\n \"type\": \"https://images.aasaan.app/123412421\"\n }\n ],\n \"brand\": {\n \"id\": \"636f2e876e9de14bfe1b02f2\"\n }\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.aasaan.shop/api/v1/stores/products")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["x-api-key"] = '<api-key>'
request["Content-Type"] = 'application/json'
request.body = "{\n \"name\": \"Head & Shoulders Anti Hairfall Anti Dandruff Shampoo\",\n \"sku\": \"000-000-000-000\",\n \"quantity\": 1,\n \"weight\": 500,\n \"categories\": [\n {\n \"id\": \"636f2e876e9de14bfe1b02f1\"\n }\n ],\n \"description\": \"Now, ensure the good health of your hair with Head & Shoulders Anti Hairfall Anti Dandruff Shampoo that strengthens hair from its roots and cures dandruff. Be it dry, frizzy, or damaged, this shampoo can bring back the younger days of your hair within just a few days. The shampoo is richly indulgent and improves the experience of washing your hair. It makes your hair dandruff-free up to 100%. Do not fret over chemicals as the product is gentle in use and can be used every day.\",\n \"shortDescription\": \"Anti Dandruff Shampoo that strengthens hair from its roots and cures dandruff\",\n \"active\": true,\n \"outOfStock\": false,\n \"width\": 100,\n \"height\": 200,\n \"depth\": 20,\n \"isShippingEnabled\": true,\n \"isProductLevelTaxEnabled\": true,\n \"displayOrder\": 1,\n \"tax\": {\n \"CGST\": 2,\n \"SGST\": 2,\n \"GST\": 4\n },\n \"seo\": {\n \"title\": \"Head and Shoulders\",\n \"description\": \"Head & Shoulders Anti Hairfall Anti Dandruff Shampoo that strengthens hair\",\n \"image\": {\n \"url\": \"https://images.aasaan.app/123412421\",\n \"type\": \"image/png\"\n }\n },\n \"variantAttributeValues\": [\n {\n \"name\": \"color\",\n \"value\": [\n \"blue, yellow, green\"\n ]\n }\n ],\n \"prices\": [\n {\n \"channelId\": \"636f2e876e9de14bfe1b02f1\",\n \"salesPrice\": \"45\",\n \"regularPrice\": \"50\",\n \"hide\": false\n }\n ],\n \"quantities\": [\n {\n \"warehouseId\": \"636f2e876e9de14bfe1b02f1\",\n \"quantity\": \"45\"\n }\n ],\n \"images\": [\n {\n \"id\": 0,\n \"url\": \"https://images.aasaan.app/123412421\",\n \"type\": \"https://images.aasaan.app/123412421\"\n }\n ],\n \"brand\": {\n \"id\": \"636f2e876e9de14bfe1b02f2\"\n }\n}"
response = http.request(request)
puts response.read_body{
"id": "623d3455ec3c4b3548eb4a343",
"sku": "000-000-000-000",
"name": "Head & Shoulders Anti Hairfall Anti Dandruff Shampoo",
"slug": "head_shoulders_anti_hairfall_anti_dandruff_shampoo_650_ml_22",
"quantity": 1,
"description": "Now, ensure the good health of your hair with Head & Shoulders Anti Hairfall Anti Dandruff Shampoo that strengthens hair from its roots and cures dandruff. Be it dry, frizzy, or damaged, this shampoo can bring back the younger days of your hair within just a few days. The shampoo is richly indulgent and improves the experience of washing your hair. It makes your hair dandruff-free up to 100%. Do not fret over chemicals as the product is gentle in use and can be used every day.",
"shortDescription": "Anti Dandruff Shampoo that strengthens hair from its roots and cures dandruff",
"active": true,
"outOfStock": false,
"width": 100,
"height": 200,
"depth": 20,
"weight": 500,
"prices": [
{
"channelId": "636f2e876e9de14bfe1b02f1",
"salesPrice": "45",
"regularPrice": "50",
"hide": false
}
],
"isShippingEnabled": true,
"isProductLevelTaxEnabled": true,
"tax": {
"CGST": 2,
"SGST": 2,
"GST": 4
},
"isVariantEnabled": true,
"seo": {
"title": "Head and Shoulders",
"description": "Head & Shoulders Anti Hairfall Anti Dandruff Shampoo that strengthens hair",
"image": {
"url": "https://images.aasaan.app/123412421",
"type": "image/png"
}
},
"categories": [
{
"id": "1231231",
"name": "Shampoos and Soaps"
}
],
"images": [
{
"id": 0,
"url": "https://images.aasaan.app/123412421",
"type": "image/png"
}
],
"variantAttributeValues": [
{
"name": "color",
"value": [
"blue, yellow, green"
]
}
],
"brand": {
"id": "636f2e876e9de14bfe1b02fa",
"name": "P&G"
},
"variants": [
{
"id": "567152378158871683",
"name": "Head & Shoulders Anti Hairfall Anti Dandruff Shampoo 600ml",
"quantity": 10,
"description": "",
"shortDescription": "",
"active": true,
"outOfStock": false,
"width": 10,
"height": 10,
"depth": 10,
"weight": 10,
"isShippingEnabled": true,
"isProductLevelTaxEnabled": true,
"images": [
{
"id": 0,
"url": "https://images.aasaan.app/123412421",
"type": "image/png"
}
],
"date_created": "2022-03-25T03:17:44.092Z",
"date_modified": "2022-06-10T07:51:12.510Z"
}
],
"date_created": "2022-03-25T03:17:44.092Z",
"date_modified": "2022-06-10T07:51:12.510Z"
}Create a new product.
Create a new product.
curl --request POST \
--url https://api.aasaan.shop/api/v1/stores/products \
--header 'Content-Type: application/json' \
--header 'x-api-key: <api-key>' \
--data '
{
"name": "Head & Shoulders Anti Hairfall Anti Dandruff Shampoo",
"sku": "000-000-000-000",
"quantity": 1,
"weight": 500,
"categories": [
{
"id": "636f2e876e9de14bfe1b02f1"
}
],
"description": "Now, ensure the good health of your hair with Head & Shoulders Anti Hairfall Anti Dandruff Shampoo that strengthens hair from its roots and cures dandruff. Be it dry, frizzy, or damaged, this shampoo can bring back the younger days of your hair within just a few days. The shampoo is richly indulgent and improves the experience of washing your hair. It makes your hair dandruff-free up to 100%. Do not fret over chemicals as the product is gentle in use and can be used every day.",
"shortDescription": "Anti Dandruff Shampoo that strengthens hair from its roots and cures dandruff",
"active": true,
"outOfStock": false,
"width": 100,
"height": 200,
"depth": 20,
"isShippingEnabled": true,
"isProductLevelTaxEnabled": true,
"displayOrder": 1,
"tax": {
"CGST": 2,
"SGST": 2,
"GST": 4
},
"seo": {
"title": "Head and Shoulders",
"description": "Head & Shoulders Anti Hairfall Anti Dandruff Shampoo that strengthens hair",
"image": {
"url": "https://images.aasaan.app/123412421",
"type": "image/png"
}
},
"variantAttributeValues": [
{
"name": "color",
"value": [
"blue, yellow, green"
]
}
],
"prices": [
{
"channelId": "636f2e876e9de14bfe1b02f1",
"salesPrice": "45",
"regularPrice": "50",
"hide": false
}
],
"quantities": [
{
"warehouseId": "636f2e876e9de14bfe1b02f1",
"quantity": "45"
}
],
"images": [
{
"id": 0,
"url": "https://images.aasaan.app/123412421",
"type": "https://images.aasaan.app/123412421"
}
],
"brand": {
"id": "636f2e876e9de14bfe1b02f2"
}
}
'import requests
url = "https://api.aasaan.shop/api/v1/stores/products"
payload = {
"name": "Head & Shoulders Anti Hairfall Anti Dandruff Shampoo",
"sku": "000-000-000-000",
"quantity": 1,
"weight": 500,
"categories": [{ "id": "636f2e876e9de14bfe1b02f1" }],
"description": "Now, ensure the good health of your hair with Head & Shoulders Anti Hairfall Anti Dandruff Shampoo that strengthens hair from its roots and cures dandruff. Be it dry, frizzy, or damaged, this shampoo can bring back the younger days of your hair within just a few days. The shampoo is richly indulgent and improves the experience of washing your hair. It makes your hair dandruff-free up to 100%. Do not fret over chemicals as the product is gentle in use and can be used every day.",
"shortDescription": "Anti Dandruff Shampoo that strengthens hair from its roots and cures dandruff",
"active": True,
"outOfStock": False,
"width": 100,
"height": 200,
"depth": 20,
"isShippingEnabled": True,
"isProductLevelTaxEnabled": True,
"displayOrder": 1,
"tax": {
"CGST": 2,
"SGST": 2,
"GST": 4
},
"seo": {
"title": "Head and Shoulders",
"description": "Head & Shoulders Anti Hairfall Anti Dandruff Shampoo that strengthens hair",
"image": {
"url": "https://images.aasaan.app/123412421",
"type": "image/png"
}
},
"variantAttributeValues": [
{
"name": "color",
"value": ["blue, yellow, green"]
}
],
"prices": [
{
"channelId": "636f2e876e9de14bfe1b02f1",
"salesPrice": "45",
"regularPrice": "50",
"hide": False
}
],
"quantities": [
{
"warehouseId": "636f2e876e9de14bfe1b02f1",
"quantity": "45"
}
],
"images": [
{
"id": 0,
"url": "https://images.aasaan.app/123412421",
"type": "https://images.aasaan.app/123412421"
}
],
"brand": { "id": "636f2e876e9de14bfe1b02f2" }
}
headers = {
"x-api-key": "<api-key>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {'x-api-key': '<api-key>', 'Content-Type': 'application/json'},
body: JSON.stringify({
name: 'Head & Shoulders Anti Hairfall Anti Dandruff Shampoo',
sku: '000-000-000-000',
quantity: 1,
weight: 500,
categories: [{id: '636f2e876e9de14bfe1b02f1'}],
description: 'Now, ensure the good health of your hair with Head & Shoulders Anti Hairfall Anti Dandruff Shampoo that strengthens hair from its roots and cures dandruff. Be it dry, frizzy, or damaged, this shampoo can bring back the younger days of your hair within just a few days. The shampoo is richly indulgent and improves the experience of washing your hair. It makes your hair dandruff-free up to 100%. Do not fret over chemicals as the product is gentle in use and can be used every day.',
shortDescription: 'Anti Dandruff Shampoo that strengthens hair from its roots and cures dandruff',
active: true,
outOfStock: false,
width: 100,
height: 200,
depth: 20,
isShippingEnabled: true,
isProductLevelTaxEnabled: true,
displayOrder: 1,
tax: {CGST: 2, SGST: 2, GST: 4},
seo: {
title: 'Head and Shoulders',
description: 'Head & Shoulders Anti Hairfall Anti Dandruff Shampoo that strengthens hair',
image: {url: 'https://images.aasaan.app/123412421', type: 'image/png'}
},
variantAttributeValues: [{name: 'color', value: ['blue, yellow, green']}],
prices: [
{
channelId: '636f2e876e9de14bfe1b02f1',
salesPrice: '45',
regularPrice: '50',
hide: false
}
],
quantities: [{warehouseId: '636f2e876e9de14bfe1b02f1', quantity: '45'}],
images: [
{
id: 0,
url: 'https://images.aasaan.app/123412421',
type: 'https://images.aasaan.app/123412421'
}
],
brand: {id: '636f2e876e9de14bfe1b02f2'}
})
};
fetch('https://api.aasaan.shop/api/v1/stores/products', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.aasaan.shop/api/v1/stores/products",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "POST",
CURLOPT_POSTFIELDS => json_encode([
'name' => 'Head & Shoulders Anti Hairfall Anti Dandruff Shampoo',
'sku' => '000-000-000-000',
'quantity' => 1,
'weight' => 500,
'categories' => [
[
'id' => '636f2e876e9de14bfe1b02f1'
]
],
'description' => 'Now, ensure the good health of your hair with Head & Shoulders Anti Hairfall Anti Dandruff Shampoo that strengthens hair from its roots and cures dandruff. Be it dry, frizzy, or damaged, this shampoo can bring back the younger days of your hair within just a few days. The shampoo is richly indulgent and improves the experience of washing your hair. It makes your hair dandruff-free up to 100%. Do not fret over chemicals as the product is gentle in use and can be used every day.',
'shortDescription' => 'Anti Dandruff Shampoo that strengthens hair from its roots and cures dandruff',
'active' => true,
'outOfStock' => false,
'width' => 100,
'height' => 200,
'depth' => 20,
'isShippingEnabled' => true,
'isProductLevelTaxEnabled' => true,
'displayOrder' => 1,
'tax' => [
'CGST' => 2,
'SGST' => 2,
'GST' => 4
],
'seo' => [
'title' => 'Head and Shoulders',
'description' => 'Head & Shoulders Anti Hairfall Anti Dandruff Shampoo that strengthens hair',
'image' => [
'url' => 'https://images.aasaan.app/123412421',
'type' => 'image/png'
]
],
'variantAttributeValues' => [
[
'name' => 'color',
'value' => [
'blue, yellow, green'
]
]
],
'prices' => [
[
'channelId' => '636f2e876e9de14bfe1b02f1',
'salesPrice' => '45',
'regularPrice' => '50',
'hide' => false
]
],
'quantities' => [
[
'warehouseId' => '636f2e876e9de14bfe1b02f1',
'quantity' => '45'
]
],
'images' => [
[
'id' => 0,
'url' => 'https://images.aasaan.app/123412421',
'type' => 'https://images.aasaan.app/123412421'
]
],
'brand' => [
'id' => '636f2e876e9de14bfe1b02f2'
]
]),
CURLOPT_HTTPHEADER => [
"Content-Type: application/json",
"x-api-key: <api-key>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"strings"
"net/http"
"io"
)
func main() {
url := "https://api.aasaan.shop/api/v1/stores/products"
payload := strings.NewReader("{\n \"name\": \"Head & Shoulders Anti Hairfall Anti Dandruff Shampoo\",\n \"sku\": \"000-000-000-000\",\n \"quantity\": 1,\n \"weight\": 500,\n \"categories\": [\n {\n \"id\": \"636f2e876e9de14bfe1b02f1\"\n }\n ],\n \"description\": \"Now, ensure the good health of your hair with Head & Shoulders Anti Hairfall Anti Dandruff Shampoo that strengthens hair from its roots and cures dandruff. Be it dry, frizzy, or damaged, this shampoo can bring back the younger days of your hair within just a few days. The shampoo is richly indulgent and improves the experience of washing your hair. It makes your hair dandruff-free up to 100%. Do not fret over chemicals as the product is gentle in use and can be used every day.\",\n \"shortDescription\": \"Anti Dandruff Shampoo that strengthens hair from its roots and cures dandruff\",\n \"active\": true,\n \"outOfStock\": false,\n \"width\": 100,\n \"height\": 200,\n \"depth\": 20,\n \"isShippingEnabled\": true,\n \"isProductLevelTaxEnabled\": true,\n \"displayOrder\": 1,\n \"tax\": {\n \"CGST\": 2,\n \"SGST\": 2,\n \"GST\": 4\n },\n \"seo\": {\n \"title\": \"Head and Shoulders\",\n \"description\": \"Head & Shoulders Anti Hairfall Anti Dandruff Shampoo that strengthens hair\",\n \"image\": {\n \"url\": \"https://images.aasaan.app/123412421\",\n \"type\": \"image/png\"\n }\n },\n \"variantAttributeValues\": [\n {\n \"name\": \"color\",\n \"value\": [\n \"blue, yellow, green\"\n ]\n }\n ],\n \"prices\": [\n {\n \"channelId\": \"636f2e876e9de14bfe1b02f1\",\n \"salesPrice\": \"45\",\n \"regularPrice\": \"50\",\n \"hide\": false\n }\n ],\n \"quantities\": [\n {\n \"warehouseId\": \"636f2e876e9de14bfe1b02f1\",\n \"quantity\": \"45\"\n }\n ],\n \"images\": [\n {\n \"id\": 0,\n \"url\": \"https://images.aasaan.app/123412421\",\n \"type\": \"https://images.aasaan.app/123412421\"\n }\n ],\n \"brand\": {\n \"id\": \"636f2e876e9de14bfe1b02f2\"\n }\n}")
req, _ := http.NewRequest("POST", url, payload)
req.Header.Add("x-api-key", "<api-key>")
req.Header.Add("Content-Type", "application/json")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.post("https://api.aasaan.shop/api/v1/stores/products")
.header("x-api-key", "<api-key>")
.header("Content-Type", "application/json")
.body("{\n \"name\": \"Head & Shoulders Anti Hairfall Anti Dandruff Shampoo\",\n \"sku\": \"000-000-000-000\",\n \"quantity\": 1,\n \"weight\": 500,\n \"categories\": [\n {\n \"id\": \"636f2e876e9de14bfe1b02f1\"\n }\n ],\n \"description\": \"Now, ensure the good health of your hair with Head & Shoulders Anti Hairfall Anti Dandruff Shampoo that strengthens hair from its roots and cures dandruff. Be it dry, frizzy, or damaged, this shampoo can bring back the younger days of your hair within just a few days. The shampoo is richly indulgent and improves the experience of washing your hair. It makes your hair dandruff-free up to 100%. Do not fret over chemicals as the product is gentle in use and can be used every day.\",\n \"shortDescription\": \"Anti Dandruff Shampoo that strengthens hair from its roots and cures dandruff\",\n \"active\": true,\n \"outOfStock\": false,\n \"width\": 100,\n \"height\": 200,\n \"depth\": 20,\n \"isShippingEnabled\": true,\n \"isProductLevelTaxEnabled\": true,\n \"displayOrder\": 1,\n \"tax\": {\n \"CGST\": 2,\n \"SGST\": 2,\n \"GST\": 4\n },\n \"seo\": {\n \"title\": \"Head and Shoulders\",\n \"description\": \"Head & Shoulders Anti Hairfall Anti Dandruff Shampoo that strengthens hair\",\n \"image\": {\n \"url\": \"https://images.aasaan.app/123412421\",\n \"type\": \"image/png\"\n }\n },\n \"variantAttributeValues\": [\n {\n \"name\": \"color\",\n \"value\": [\n \"blue, yellow, green\"\n ]\n }\n ],\n \"prices\": [\n {\n \"channelId\": \"636f2e876e9de14bfe1b02f1\",\n \"salesPrice\": \"45\",\n \"regularPrice\": \"50\",\n \"hide\": false\n }\n ],\n \"quantities\": [\n {\n \"warehouseId\": \"636f2e876e9de14bfe1b02f1\",\n \"quantity\": \"45\"\n }\n ],\n \"images\": [\n {\n \"id\": 0,\n \"url\": \"https://images.aasaan.app/123412421\",\n \"type\": \"https://images.aasaan.app/123412421\"\n }\n ],\n \"brand\": {\n \"id\": \"636f2e876e9de14bfe1b02f2\"\n }\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.aasaan.shop/api/v1/stores/products")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["x-api-key"] = '<api-key>'
request["Content-Type"] = 'application/json'
request.body = "{\n \"name\": \"Head & Shoulders Anti Hairfall Anti Dandruff Shampoo\",\n \"sku\": \"000-000-000-000\",\n \"quantity\": 1,\n \"weight\": 500,\n \"categories\": [\n {\n \"id\": \"636f2e876e9de14bfe1b02f1\"\n }\n ],\n \"description\": \"Now, ensure the good health of your hair with Head & Shoulders Anti Hairfall Anti Dandruff Shampoo that strengthens hair from its roots and cures dandruff. Be it dry, frizzy, or damaged, this shampoo can bring back the younger days of your hair within just a few days. The shampoo is richly indulgent and improves the experience of washing your hair. It makes your hair dandruff-free up to 100%. Do not fret over chemicals as the product is gentle in use and can be used every day.\",\n \"shortDescription\": \"Anti Dandruff Shampoo that strengthens hair from its roots and cures dandruff\",\n \"active\": true,\n \"outOfStock\": false,\n \"width\": 100,\n \"height\": 200,\n \"depth\": 20,\n \"isShippingEnabled\": true,\n \"isProductLevelTaxEnabled\": true,\n \"displayOrder\": 1,\n \"tax\": {\n \"CGST\": 2,\n \"SGST\": 2,\n \"GST\": 4\n },\n \"seo\": {\n \"title\": \"Head and Shoulders\",\n \"description\": \"Head & Shoulders Anti Hairfall Anti Dandruff Shampoo that strengthens hair\",\n \"image\": {\n \"url\": \"https://images.aasaan.app/123412421\",\n \"type\": \"image/png\"\n }\n },\n \"variantAttributeValues\": [\n {\n \"name\": \"color\",\n \"value\": [\n \"blue, yellow, green\"\n ]\n }\n ],\n \"prices\": [\n {\n \"channelId\": \"636f2e876e9de14bfe1b02f1\",\n \"salesPrice\": \"45\",\n \"regularPrice\": \"50\",\n \"hide\": false\n }\n ],\n \"quantities\": [\n {\n \"warehouseId\": \"636f2e876e9de14bfe1b02f1\",\n \"quantity\": \"45\"\n }\n ],\n \"images\": [\n {\n \"id\": 0,\n \"url\": \"https://images.aasaan.app/123412421\",\n \"type\": \"https://images.aasaan.app/123412421\"\n }\n ],\n \"brand\": {\n \"id\": \"636f2e876e9de14bfe1b02f2\"\n }\n}"
response = http.request(request)
puts response.read_body{
"id": "623d3455ec3c4b3548eb4a343",
"sku": "000-000-000-000",
"name": "Head & Shoulders Anti Hairfall Anti Dandruff Shampoo",
"slug": "head_shoulders_anti_hairfall_anti_dandruff_shampoo_650_ml_22",
"quantity": 1,
"description": "Now, ensure the good health of your hair with Head & Shoulders Anti Hairfall Anti Dandruff Shampoo that strengthens hair from its roots and cures dandruff. Be it dry, frizzy, or damaged, this shampoo can bring back the younger days of your hair within just a few days. The shampoo is richly indulgent and improves the experience of washing your hair. It makes your hair dandruff-free up to 100%. Do not fret over chemicals as the product is gentle in use and can be used every day.",
"shortDescription": "Anti Dandruff Shampoo that strengthens hair from its roots and cures dandruff",
"active": true,
"outOfStock": false,
"width": 100,
"height": 200,
"depth": 20,
"weight": 500,
"prices": [
{
"channelId": "636f2e876e9de14bfe1b02f1",
"salesPrice": "45",
"regularPrice": "50",
"hide": false
}
],
"isShippingEnabled": true,
"isProductLevelTaxEnabled": true,
"tax": {
"CGST": 2,
"SGST": 2,
"GST": 4
},
"isVariantEnabled": true,
"seo": {
"title": "Head and Shoulders",
"description": "Head & Shoulders Anti Hairfall Anti Dandruff Shampoo that strengthens hair",
"image": {
"url": "https://images.aasaan.app/123412421",
"type": "image/png"
}
},
"categories": [
{
"id": "1231231",
"name": "Shampoos and Soaps"
}
],
"images": [
{
"id": 0,
"url": "https://images.aasaan.app/123412421",
"type": "image/png"
}
],
"variantAttributeValues": [
{
"name": "color",
"value": [
"blue, yellow, green"
]
}
],
"brand": {
"id": "636f2e876e9de14bfe1b02fa",
"name": "P&G"
},
"variants": [
{
"id": "567152378158871683",
"name": "Head & Shoulders Anti Hairfall Anti Dandruff Shampoo 600ml",
"quantity": 10,
"description": "",
"shortDescription": "",
"active": true,
"outOfStock": false,
"width": 10,
"height": 10,
"depth": 10,
"weight": 10,
"isShippingEnabled": true,
"isProductLevelTaxEnabled": true,
"images": [
{
"id": 0,
"url": "https://images.aasaan.app/123412421",
"type": "image/png"
}
],
"date_created": "2022-03-25T03:17:44.092Z",
"date_modified": "2022-06-10T07:51:12.510Z"
}
],
"date_created": "2022-03-25T03:17:44.092Z",
"date_modified": "2022-06-10T07:51:12.510Z"
}Authorizations
Body
Name
"Head & Shoulders Anti Hairfall Anti Dandruff Shampoo"
Stock keeping Unit
"000-000-000-000"
Product quantity
1
Weight(kg)
500
Associated Categories
Show child attributes
Show child attributes
Product description
"Now, ensure the good health of your hair with Head & Shoulders Anti Hairfall Anti Dandruff Shampoo that strengthens hair from its roots and cures dandruff. Be it dry, frizzy, or damaged, this shampoo can bring back the younger days of your hair within just a few days. The shampoo is richly indulgent and improves the experience of washing your hair. It makes your hair dandruff-free up to 100%. Do not fret over chemicals as the product is gentle in use and can be used every day."
Product short description
"Anti Dandruff Shampoo that strengthens hair from its roots and cures dandruff"
Active indicator
true
Out of stock product
false
Width(cm)
100
Height(cm)
200
Depth(cm)
20
Enable to enter shipping details
true
Enable to enter CGST and SGST taxes
true
Product display order
1
Tax information for this product
Show child attributes
Show child attributes
SEO metadata for this product
Show child attributes
Show child attributes
All Possible Variant Attribute Values that this parent product can have
Show child attributes
Show child attributes
Price Information across various channels
Show child attributes
Show child attributes
Quantity Information across various warehouses
Show child attributes
Show child attributes
Product images
Show child attributes
Show child attributes
Brand
Show child attributes
Show child attributes
Response
Product created.
Unique identifier for the resource
"623d3455ec3c4b3548eb4a343"
Stock keeping Unit
"000-000-000-000"
Name
"Head & Shoulders Anti Hairfall Anti Dandruff Shampoo"
Slug
"head_shoulders_anti_hairfall_anti_dandruff_shampoo_650_ml_22"
Product quantity
1
Product description
"Now, ensure the good health of your hair with Head & Shoulders Anti Hairfall Anti Dandruff Shampoo that strengthens hair from its roots and cures dandruff. Be it dry, frizzy, or damaged, this shampoo can bring back the younger days of your hair within just a few days. The shampoo is richly indulgent and improves the experience of washing your hair. It makes your hair dandruff-free up to 100%. Do not fret over chemicals as the product is gentle in use and can be used every day."
Product short description
"Anti Dandruff Shampoo that strengthens hair from its roots and cures dandruff"
Active indicator
true
Out of stock product
false
Width(cm)
100
Height(cm)
200
Depth(cm)
20
Weight(kg)
500
Price Information across various channels
Show child attributes
Show child attributes
Enable to enter shipping details
true
Enable to enter CGST and SGST taxes
true
Tax information for this product
Show child attributes
Show child attributes
Enable to enter product variants
SEO metadata for this product
Show child attributes
Show child attributes
Associated Categories
Show child attributes
Show child attributes
Product images
Show child attributes
Show child attributes
All Possible Variant Attribute Values that this parent product can have
Show child attributes
Show child attributes
Brand
Show child attributes
Show child attributes
Images
Show child attributes
Show child attributes
Created date
"2022-03-25T03:17:44.092Z"
Modified date
"2022-06-10T07:51:12.510Z"
