curl --request POST \
--url https://partner-api.aasaan.shop/api/v1/partner-integrations/stores/{storeId}/products/{productId}/variants/{variantId} \
--header 'Content-Type: application/json' \
--data '
{
"salesPrice": 543,
"regularPrice": 543,
"quantity": 1,
"variantAttributeValues": [
{
"name": "color",
"value": "brown"
}
],
"weight": 500,
"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,
"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"
}
},
"images": [
{
"id": 0,
"url": "https://images.aasaan.app/123412421",
"type": "https://images.aasaan.app/123412421"
}
]
}
'import requests
url = "https://partner-api.aasaan.shop/api/v1/partner-integrations/stores/{storeId}/products/{productId}/variants/{variantId}"
payload = {
"salesPrice": 543,
"regularPrice": 543,
"quantity": 1,
"variantAttributeValues": [
{
"name": "color",
"value": "brown"
}
],
"weight": 500,
"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,
"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"
}
},
"images": [
{
"id": 0,
"url": "https://images.aasaan.app/123412421",
"type": "https://images.aasaan.app/123412421"
}
]
}
headers = {"Content-Type": "application/json"}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {'Content-Type': 'application/json'},
body: JSON.stringify({
salesPrice: 543,
regularPrice: 543,
quantity: 1,
variantAttributeValues: [{name: 'color', value: 'brown'}],
weight: 500,
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,
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'}
},
images: [
{
id: 0,
url: 'https://images.aasaan.app/123412421',
type: 'https://images.aasaan.app/123412421'
}
]
})
};
fetch('https://partner-api.aasaan.shop/api/v1/partner-integrations/stores/{storeId}/products/{productId}/variants/{variantId}', 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://partner-api.aasaan.shop/api/v1/partner-integrations/stores/{storeId}/products/{productId}/variants/{variantId}",
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([
'salesPrice' => 543,
'regularPrice' => 543,
'quantity' => 1,
'variantAttributeValues' => [
[
'name' => 'color',
'value' => 'brown'
]
],
'weight' => 500,
'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,
'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'
]
],
'images' => [
[
'id' => 0,
'url' => 'https://images.aasaan.app/123412421',
'type' => 'https://images.aasaan.app/123412421'
]
]
]),
CURLOPT_HTTPHEADER => [
"Content-Type: application/json"
],
]);
$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://partner-api.aasaan.shop/api/v1/partner-integrations/stores/{storeId}/products/{productId}/variants/{variantId}"
payload := strings.NewReader("{\n \"salesPrice\": 543,\n \"regularPrice\": 543,\n \"quantity\": 1,\n \"variantAttributeValues\": [\n {\n \"name\": \"color\",\n \"value\": \"brown\"\n }\n ],\n \"weight\": 500,\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 \"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 \"images\": [\n {\n \"id\": 0,\n \"url\": \"https://images.aasaan.app/123412421\",\n \"type\": \"https://images.aasaan.app/123412421\"\n }\n ]\n}")
req, _ := http.NewRequest("POST", url, payload)
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://partner-api.aasaan.shop/api/v1/partner-integrations/stores/{storeId}/products/{productId}/variants/{variantId}")
.header("Content-Type", "application/json")
.body("{\n \"salesPrice\": 543,\n \"regularPrice\": 543,\n \"quantity\": 1,\n \"variantAttributeValues\": [\n {\n \"name\": \"color\",\n \"value\": \"brown\"\n }\n ],\n \"weight\": 500,\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 \"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 \"images\": [\n {\n \"id\": 0,\n \"url\": \"https://images.aasaan.app/123412421\",\n \"type\": \"https://images.aasaan.app/123412421\"\n }\n ]\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://partner-api.aasaan.shop/api/v1/partner-integrations/stores/{storeId}/products/{productId}/variants/{variantId}")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["Content-Type"] = 'application/json'
request.body = "{\n \"salesPrice\": 543,\n \"regularPrice\": 543,\n \"quantity\": 1,\n \"variantAttributeValues\": [\n {\n \"name\": \"color\",\n \"value\": \"brown\"\n }\n ],\n \"weight\": 500,\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 \"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 \"images\": [\n {\n \"id\": 0,\n \"url\": \"https://images.aasaan.app/123412421\",\n \"type\": \"https://images.aasaan.app/123412421\"\n }\n ]\n}"
response = http.request(request)
puts response.read_body{
"id": "623d3455ec3c4b3548eb4a343",
"names": "XL, Brown",
"slug": "head_shoulders_anti_hairfall_anti_dandruff_shampoo_650_ml_22",
"salesPrice": 543,
"regularPrice": 543,
"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",
"hide": false,
"active": true,
"outOfStock": false,
"width": 100,
"height": 200,
"depth": 20,
"weight": 500,
"isShippingEnabled": 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"
}
},
"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"
}Create a new Variant of the specified base product.
Create a new Variant of the specified base product.
curl --request POST \
--url https://partner-api.aasaan.shop/api/v1/partner-integrations/stores/{storeId}/products/{productId}/variants/{variantId} \
--header 'Content-Type: application/json' \
--data '
{
"salesPrice": 543,
"regularPrice": 543,
"quantity": 1,
"variantAttributeValues": [
{
"name": "color",
"value": "brown"
}
],
"weight": 500,
"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,
"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"
}
},
"images": [
{
"id": 0,
"url": "https://images.aasaan.app/123412421",
"type": "https://images.aasaan.app/123412421"
}
]
}
'import requests
url = "https://partner-api.aasaan.shop/api/v1/partner-integrations/stores/{storeId}/products/{productId}/variants/{variantId}"
payload = {
"salesPrice": 543,
"regularPrice": 543,
"quantity": 1,
"variantAttributeValues": [
{
"name": "color",
"value": "brown"
}
],
"weight": 500,
"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,
"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"
}
},
"images": [
{
"id": 0,
"url": "https://images.aasaan.app/123412421",
"type": "https://images.aasaan.app/123412421"
}
]
}
headers = {"Content-Type": "application/json"}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {'Content-Type': 'application/json'},
body: JSON.stringify({
salesPrice: 543,
regularPrice: 543,
quantity: 1,
variantAttributeValues: [{name: 'color', value: 'brown'}],
weight: 500,
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,
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'}
},
images: [
{
id: 0,
url: 'https://images.aasaan.app/123412421',
type: 'https://images.aasaan.app/123412421'
}
]
})
};
fetch('https://partner-api.aasaan.shop/api/v1/partner-integrations/stores/{storeId}/products/{productId}/variants/{variantId}', 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://partner-api.aasaan.shop/api/v1/partner-integrations/stores/{storeId}/products/{productId}/variants/{variantId}",
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([
'salesPrice' => 543,
'regularPrice' => 543,
'quantity' => 1,
'variantAttributeValues' => [
[
'name' => 'color',
'value' => 'brown'
]
],
'weight' => 500,
'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,
'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'
]
],
'images' => [
[
'id' => 0,
'url' => 'https://images.aasaan.app/123412421',
'type' => 'https://images.aasaan.app/123412421'
]
]
]),
CURLOPT_HTTPHEADER => [
"Content-Type: application/json"
],
]);
$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://partner-api.aasaan.shop/api/v1/partner-integrations/stores/{storeId}/products/{productId}/variants/{variantId}"
payload := strings.NewReader("{\n \"salesPrice\": 543,\n \"regularPrice\": 543,\n \"quantity\": 1,\n \"variantAttributeValues\": [\n {\n \"name\": \"color\",\n \"value\": \"brown\"\n }\n ],\n \"weight\": 500,\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 \"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 \"images\": [\n {\n \"id\": 0,\n \"url\": \"https://images.aasaan.app/123412421\",\n \"type\": \"https://images.aasaan.app/123412421\"\n }\n ]\n}")
req, _ := http.NewRequest("POST", url, payload)
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://partner-api.aasaan.shop/api/v1/partner-integrations/stores/{storeId}/products/{productId}/variants/{variantId}")
.header("Content-Type", "application/json")
.body("{\n \"salesPrice\": 543,\n \"regularPrice\": 543,\n \"quantity\": 1,\n \"variantAttributeValues\": [\n {\n \"name\": \"color\",\n \"value\": \"brown\"\n }\n ],\n \"weight\": 500,\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 \"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 \"images\": [\n {\n \"id\": 0,\n \"url\": \"https://images.aasaan.app/123412421\",\n \"type\": \"https://images.aasaan.app/123412421\"\n }\n ]\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://partner-api.aasaan.shop/api/v1/partner-integrations/stores/{storeId}/products/{productId}/variants/{variantId}")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["Content-Type"] = 'application/json'
request.body = "{\n \"salesPrice\": 543,\n \"regularPrice\": 543,\n \"quantity\": 1,\n \"variantAttributeValues\": [\n {\n \"name\": \"color\",\n \"value\": \"brown\"\n }\n ],\n \"weight\": 500,\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 \"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 \"images\": [\n {\n \"id\": 0,\n \"url\": \"https://images.aasaan.app/123412421\",\n \"type\": \"https://images.aasaan.app/123412421\"\n }\n ]\n}"
response = http.request(request)
puts response.read_body{
"id": "623d3455ec3c4b3548eb4a343",
"names": "XL, Brown",
"slug": "head_shoulders_anti_hairfall_anti_dandruff_shampoo_650_ml_22",
"salesPrice": 543,
"regularPrice": 543,
"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",
"hide": false,
"active": true,
"outOfStock": false,
"width": 100,
"height": 200,
"depth": 20,
"weight": 500,
"isShippingEnabled": 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"
}
},
"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"
}Path Parameters
Store ID for this resource request
Product Id
Variant Id
Body
Sales price
543
Actual price
543
Product quantity
1
attributes and corresponding options
Show child attributes
Show child attributes
Weight(kg)
500
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
SEO metadata for this product
Show child attributes
Show child attributes
Product images
Show child attributes
Show child attributes
Response
Variant created.
Unique identifier for the resource
"623d3455ec3c4b3548eb4a343"
Name
"XL, Brown"
Slug
"head_shoulders_anti_hairfall_anti_dandruff_shampoo_650_ml_22"
Sales price
543
Actual price
543
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"
Hide this product
false
Active indicator
true
Out of stock product
false
Width(cm)
100
Height(cm)
200
Depth(cm)
20
Weight(kg)
500
Enable to enter shipping details
true
SEO metadata for this product
Show child attributes
Show child attributes
Product images
Show child attributes
Show child attributes
Created date
"2022-03-25T03:17:44.092Z"
Modified date
"2022-06-10T07:51:12.510Z"
