Catalog
- GETRetrieve all products
- POSTCreate product
- GETRetrieve skus
- GETRetrieve product details
- PUTUpdate product details
- DELDelete product
- GETRetrieve product variants
- POSTCreate variant
- POSTUpdate variants in bulk
- GETRetrieve a variant details
- PUTUpdate a variant
- DELDelete a variant
- GETRetrieve product inventory
- POSTUpdate product inventory
- GETRetrieve product inventory activities
- PUTUpdate product inventory activities
- POSTCreate product inventory activities
- GETRetrieve product reviews
- GETRetrieve product review
- PUTUpdate product review
- DELDelete product review
- GETRetrieve all categories
- POSTCreate category
- GETRetrieve category
- PUTUpdate category
- DELDelete category
- GETRetrieve all attributes
- POSTCreate attribute
- GETRetrieve attribute
- PUTUpdate attribute
- DELDelete attribute
- POSTAdd product pricing
- PUTUpdate product pricing
- DELDelete product pricing
- POSTAdd product image
- PUTUpdate product image
- DELDelete product image
- GETRetrive sku detail
Auth
- PUTActivate user account
- PUTDeactivate user account
- GETCheck domain availability
- GETRetrieve all roles
- POSTCreate new role
- PUTUpdate role
- DELDelete role
- GETRetrieve all permissions of a role
- POSTAdd permission to role
- DELRemove permission from role
- GETRetrieve all members
- POSTCreate new member
- GETRetrieve member detail
- PUTUpdate member details
- DELDelete member
- GETRetrieve all roles of a member
- POSTAssigne role to member
- DELRemove role from member
Coupons & promotions API
- GETList all coupons
- POSTCreate coupon
- GETRetrieve coupon details
- PUTUpdate coupon
- DELDelete coupon
- GETList all coupon codes
- POSTAdd coupon code
- GETList all coupon customers
- GETRetrieve coupon usage
- GETList all promotions
- POSTCreate promotion
- GETRetrieve promotion details
- PUTUpdate promotion
- DELDelete promotion
- GETList all promotion usage
- GETList all promotion customers
Warehouse
Orders API
Shipping API
Customers API
Segments API
Payments API
Media Gallery API
Update product details
curl --request PUT \
--url https://services.commercengine.dev/api/v1/x2yh61zw4k/admin/catalog/products/{id} \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{
"name": "<string>",
"status": "draft",
"active": true,
"stock_available": true,
"short_description": "<string>",
"description": "<string>",
"metadata": [
{
"key": "<string>",
"value": "<string>"
}
],
"tags": [
"<string>"
],
"hsn_code": "<string>",
"categories": [
"<string>"
],
"attributes": [
{
"attribute_id": "<string>",
"attribute_value": "<string>"
}
],
"is_featured": true,
"on_subscription": true,
"on_promotion": true,
"has_variant": true,
"variants": [
{
"name": "<string>",
"associated_options": {}
}
],
"sku": "<string>",
"pricing": [
{
"customer_group_id": "<string>",
"cost_price": 123,
"listing_price": 123,
"selling_price": 123,
"min_order_quantity": 123,
"max_order_quantity": 123,
"incremental_quantity": 123,
"tax_type": "<string>",
"tax_rate": 123
}
],
"images": [
{
"title": "<string>",
"alternate_text": "<string>",
"sort_order": 123,
"url_tiny": "<string>",
"url_thumbnail": "<string>",
"url_standard": "<string>",
"url_zoom": "<string>",
"other_details": {}
}
],
"shipping": {
"is_free_shipping": false,
"is_fixed_cost_shipping": false,
"fixed_cost_shipping_price": 123,
"is_shipping_price_include_tax": true,
"availability_description": "<string>",
"ships_internationally": true,
"mid_code": "<string>",
"country_of_origin": "<string>"
},
"packaging": {
"pack_width": 123,
"pack_height": 123,
"pack_length": 123,
"pack_dry_weight": 123,
"units_per_pack": 123,
"vertical_rotation": true,
"shipper_width": 123,
"shipper_height": 123,
"shipper_length": 123,
"shipper_dry_weight": 123,
"units_per_shipper": 123
},
"promotions": [
{
"promotion_type": "<string>",
"starts_at": "<string>",
"expires_at": "<string>",
"details": [
{
"discount_type": "percentage",
"discount_percent": 123,
"discount_fixed_amount": 123,
"customer_group_id": "<string>"
}
]
}
],
"subscriptions": [
{
"subscription_plan": "<string>",
"billing_interval": 123,
"billing_frequency": "<string>",
"billing_limit": 123,
"billing_trial_days": 123,
"order_interval": 123,
"order_frequency": "<string>",
"order_limit": 123,
"fulfill_separately": true,
"subscription_price": [
{
"customer_group_id": "<string>",
"min_quantity": 123,
"suscription_price": 123
}
],
"quantity": 123
}
],
"sales_channels": [
{
"id": "<string>",
"sales_channel_sku": "<string>"
}
],
"related_products": {
"cross_sell": [
"<string>"
],
"upsell": [
"<string>"
]
},
"seo": {
"meta_title": "<string>",
"meta_description": "<string>",
"meta_keywords": [
"<string>"
],
"slug": "<string>"
},
"bundle_items": [
{
"product_id": "<string>",
"quantity": 123
}
]
}'
{
"message": "<string>",
"success": true,
"content": {
"product": {
"id": "<string>",
"name": "<string>",
"status": "draft",
"active": true,
"stock_available": true,
"short_description": "<string>",
"metadata": [
{
"name": "<string>",
"value": "<string>"
}
],
"tags": [
"<string>"
],
"product_type": "<string>",
"hsn_code": "<string>",
"categories": [
{
"id": "<string>",
"name": "<string>",
"active": true
}
],
"attributes": [
{
"attribute_id": "<string>",
"attribute_name": "<string>",
"attribute_value": "<string>",
"attribute_type": "Text"
}
],
"variant_options": [
{
"option_name": "<string>",
"option_value": [
"<string>"
]
}
],
"reviews_rating_sum": 123,
"reviews_count": 123,
"is_featured": true,
"on_offer": true,
"on_promotion": true,
"on_subscription": true,
"has_variant": true,
"variant_count": 123,
"modified_at": "2023-11-07T05:31:56Z",
"created_at": "2023-11-07T05:31:56Z",
"sku": "<string>",
"images": [
{
"id": 123,
"title": "<string>",
"alternate_text": "<string>",
"sort_order": 123,
"url_tiny": "<string>",
"url_thumbnail": "<string>",
"url_standard": "<string>",
"url_zoom": "<string>",
"other_details": {}
}
],
"description": "<string>",
"pricing": [
{
"id": 123,
"customer_group_id": "<string>",
"cost_price": 123,
"listing_price": 123,
"selling_price": 123,
"min_order_quantity": 123,
"max_order_quantity": 123,
"incremental_quantity": 123,
"tax_type": "<string>",
"tax_rate": 123
}
],
"shipping": {
"is_free_shipping": false,
"is_fixed_cost_shipping": false,
"fixed_cost_shipping_price": 123,
"is_shipping_price_include_tax": true,
"availability_description": "<string>",
"ships_internationally": true,
"mid_code": "<string>",
"country_of_origin": "<string>"
},
"packaging": {
"pack_width": 123,
"pack_height": 123,
"pack_length": 123,
"pack_dry_weight": 123,
"units_per_pack": 123,
"vertical_rotation": true,
"shipper_width": 123,
"shipper_height": 123,
"shipper_length": 123,
"shipper_dry_weight": 123,
"units_per_shipper": 123
},
"promotions": [
{
"promotion_type": "<string>",
"starts_at": "<string>",
"expires_at": "<string>",
"details": [
{
"discount_type": "percentage",
"discount_percent": 123,
"discount_fixed_amount": 123,
"customer_group_id": "<string>"
}
]
}
],
"subscriptions": [
{
"subscription_plan": "<string>",
"billing_interval": 123,
"billing_frequency": "<string>",
"billing_limit": 123,
"billing_trial_days": 123,
"order_interval": 123,
"order_frequency": "<string>",
"order_limit": 123,
"fulfill_separately": true,
"subscription_price": [
{
"customer_group_id": "<string>",
"min_quantity": 123,
"suscription_price": 123
}
],
"quantity": 123
}
],
"sales_channels": [
{
"id": "<string>",
"name": "<string>",
"sales_channel_sku": "<string>"
}
],
"related_products": {
"upsell": [
{
"id": "<string>",
"name": "<string>",
"status": "draft",
"active": true,
"stock_available": true,
"short_description": "<string>",
"metadata": [
{
"name": "<string>",
"value": "<string>"
}
],
"tags": [
"<string>"
],
"product_type": "<string>",
"hsn_code": "<string>",
"categories": [
{
"id": "<string>",
"name": "<string>",
"active": true
}
],
"attributes": [
{
"attribute_id": "<string>",
"attribute_name": "<string>",
"attribute_value": "<string>",
"attribute_type": "Text"
}
],
"variant_options": [
{
"option_name": "<string>",
"option_value": [
"<string>"
]
}
],
"reviews_rating_sum": 123,
"reviews_count": 123,
"is_featured": true,
"on_offer": true,
"on_promotion": true,
"on_subscription": true,
"has_variant": true,
"variant_count": 123,
"modified_at": "2023-11-07T05:31:56Z",
"created_at": "2023-11-07T05:31:56Z",
"sku": "<string>",
"images": [
{
"id": 123,
"title": "<string>",
"alternate_text": "<string>",
"sort_order": 123,
"url_tiny": "<string>",
"url_thumbnail": "<string>",
"url_standard": "<string>",
"url_zoom": "<string>",
"other_details": {}
}
]
}
],
"cross_sell": [
{
"id": "<string>",
"name": "<string>",
"status": "draft",
"active": true,
"stock_available": true,
"short_description": "<string>",
"metadata": [
{
"name": "<string>",
"value": "<string>"
}
],
"tags": [
"<string>"
],
"product_type": "<string>",
"hsn_code": "<string>",
"categories": [
{
"id": "<string>",
"name": "<string>",
"active": true
}
],
"attributes": [
{
"attribute_id": "<string>",
"attribute_name": "<string>",
"attribute_value": "<string>",
"attribute_type": "Text"
}
],
"variant_options": [
{
"option_name": "<string>",
"option_value": [
"<string>"
]
}
],
"reviews_rating_sum": 123,
"reviews_count": 123,
"is_featured": true,
"on_offer": true,
"on_promotion": true,
"on_subscription": true,
"has_variant": true,
"variant_count": 123,
"modified_at": "2023-11-07T05:31:56Z",
"created_at": "2023-11-07T05:31:56Z",
"sku": "<string>",
"images": [
{
"id": 123,
"title": "<string>",
"alternate_text": "<string>",
"sort_order": 123,
"url_tiny": "<string>",
"url_thumbnail": "<string>",
"url_standard": "<string>",
"url_zoom": "<string>",
"other_details": {}
}
]
}
]
},
"variants": [
{
"id": "<string>",
"name": "<string>",
"sku": "<string>",
"active": true,
"hsn_code": "<string>",
"images": [
{
"id": 123,
"title": "<string>",
"alternate_text": "<string>",
"sort_order": 123,
"url_tiny": "<string>",
"url_thumbnail": "<string>",
"url_standard": "<string>",
"url_zoom": "<string>",
"other_details": {}
}
],
"pricing": [
{
"id": 123,
"customer_group_id": "<string>",
"cost_price": 123,
"listing_price": 123,
"selling_price": 123,
"min_order_quantity": 123,
"max_order_quantity": 123,
"incremental_quantity": 123,
"tax_type": "<string>",
"tax_rate": 123
}
],
"packaging": {
"pack_width": 123,
"pack_height": 123,
"pack_length": 123,
"pack_dry_weight": 123,
"units_per_pack": 123,
"vertical_rotation": true,
"shipper_width": 123,
"shipper_height": 123,
"shipper_length": 123,
"shipper_dry_weight": 123,
"units_per_shipper": 123
},
"associated_options": {}
}
],
"bundle_items": [
{
"product_id": "<string>",
"product_name": "<string>",
"quantity": 123,
"sku": "<string>",
"stock_available": true,
"pricing": {
"id": 123,
"customer_group_id": "<string>",
"cost_price": 123,
"listing_price": 123,
"selling_price": 123,
"min_order_quantity": 123,
"max_order_quantity": 123,
"incremental_quantity": 123,
"tax_type": "<string>",
"tax_rate": 123
},
"images": [
{
"id": 123,
"title": "<string>",
"alternate_text": "<string>",
"sort_order": 123,
"url_tiny": "<string>",
"url_thumbnail": "<string>",
"url_standard": "<string>",
"url_zoom": "<string>",
"other_details": {}
}
],
"reviews_rating_sum": 123,
"reviews_count": 123
}
],
"seo": {
"meta_title": "<string>",
"meta_description": "<string>",
"meta_keywords": [
"<string>"
],
"slug": "<string>"
}
}
}
}
Authorizations
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Path Parameters
product Ulid
Body
128
draft
, active
, inactive
256
array of category ulid
Use this field only for creating variants of a draft product having variants.
Object structure varies as per combination of attributes and values used to generate variants. For example, if one attribute (Size) is used, this object structure will look like this, {"Size":"Small"} If multiple attributes (Size, Color) are used, then its structure will be, {"Size":"Small", "Color":"Red"}
required if has_variant is false.
64
64
customer group ulid
128
128
128
512
512
512
512
percentage
, fixed-amount
'> 0' if discount_type = percentage, otherwise set 0.
'> 0' if discount_type = fixed-amount, otherwise set 0.
null means never expires.
64
64
64
Response
product ulid
128
256
32
64
draft
, active
, inactive
Text
, Number
, Boolean
, Date
, Single-select
, Multi-select
, Color
, Currency
, File
, Image
128
128
512
512
512
512
64
customer group ulid
128
percentage
, fixed-amount
'> 0' if discount_type = percentage, otherwise set 0.
'> 0' if discount_type = fixed-amount, otherwise set 0.
null means never expires.
64
64
64
product ulid
128
256
32
64
draft
, active
, inactive
product ulid
128
256
32
64
draft
, active
, inactive
128
128
512
512
512
512
64
customer group ulid
128
64
customer group ulid
128
128
128
512
512
512
512
curl --request PUT \
--url https://services.commercengine.dev/api/v1/x2yh61zw4k/admin/catalog/products/{id} \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{
"name": "<string>",
"status": "draft",
"active": true,
"stock_available": true,
"short_description": "<string>",
"description": "<string>",
"metadata": [
{
"key": "<string>",
"value": "<string>"
}
],
"tags": [
"<string>"
],
"hsn_code": "<string>",
"categories": [
"<string>"
],
"attributes": [
{
"attribute_id": "<string>",
"attribute_value": "<string>"
}
],
"is_featured": true,
"on_subscription": true,
"on_promotion": true,
"has_variant": true,
"variants": [
{
"name": "<string>",
"associated_options": {}
}
],
"sku": "<string>",
"pricing": [
{
"customer_group_id": "<string>",
"cost_price": 123,
"listing_price": 123,
"selling_price": 123,
"min_order_quantity": 123,
"max_order_quantity": 123,
"incremental_quantity": 123,
"tax_type": "<string>",
"tax_rate": 123
}
],
"images": [
{
"title": "<string>",
"alternate_text": "<string>",
"sort_order": 123,
"url_tiny": "<string>",
"url_thumbnail": "<string>",
"url_standard": "<string>",
"url_zoom": "<string>",
"other_details": {}
}
],
"shipping": {
"is_free_shipping": false,
"is_fixed_cost_shipping": false,
"fixed_cost_shipping_price": 123,
"is_shipping_price_include_tax": true,
"availability_description": "<string>",
"ships_internationally": true,
"mid_code": "<string>",
"country_of_origin": "<string>"
},
"packaging": {
"pack_width": 123,
"pack_height": 123,
"pack_length": 123,
"pack_dry_weight": 123,
"units_per_pack": 123,
"vertical_rotation": true,
"shipper_width": 123,
"shipper_height": 123,
"shipper_length": 123,
"shipper_dry_weight": 123,
"units_per_shipper": 123
},
"promotions": [
{
"promotion_type": "<string>",
"starts_at": "<string>",
"expires_at": "<string>",
"details": [
{
"discount_type": "percentage",
"discount_percent": 123,
"discount_fixed_amount": 123,
"customer_group_id": "<string>"
}
]
}
],
"subscriptions": [
{
"subscription_plan": "<string>",
"billing_interval": 123,
"billing_frequency": "<string>",
"billing_limit": 123,
"billing_trial_days": 123,
"order_interval": 123,
"order_frequency": "<string>",
"order_limit": 123,
"fulfill_separately": true,
"subscription_price": [
{
"customer_group_id": "<string>",
"min_quantity": 123,
"suscription_price": 123
}
],
"quantity": 123
}
],
"sales_channels": [
{
"id": "<string>",
"sales_channel_sku": "<string>"
}
],
"related_products": {
"cross_sell": [
"<string>"
],
"upsell": [
"<string>"
]
},
"seo": {
"meta_title": "<string>",
"meta_description": "<string>",
"meta_keywords": [
"<string>"
],
"slug": "<string>"
},
"bundle_items": [
{
"product_id": "<string>",
"quantity": 123
}
]
}'
{
"message": "<string>",
"success": true,
"content": {
"product": {
"id": "<string>",
"name": "<string>",
"status": "draft",
"active": true,
"stock_available": true,
"short_description": "<string>",
"metadata": [
{
"name": "<string>",
"value": "<string>"
}
],
"tags": [
"<string>"
],
"product_type": "<string>",
"hsn_code": "<string>",
"categories": [
{
"id": "<string>",
"name": "<string>",
"active": true
}
],
"attributes": [
{
"attribute_id": "<string>",
"attribute_name": "<string>",
"attribute_value": "<string>",
"attribute_type": "Text"
}
],
"variant_options": [
{
"option_name": "<string>",
"option_value": [
"<string>"
]
}
],
"reviews_rating_sum": 123,
"reviews_count": 123,
"is_featured": true,
"on_offer": true,
"on_promotion": true,
"on_subscription": true,
"has_variant": true,
"variant_count": 123,
"modified_at": "2023-11-07T05:31:56Z",
"created_at": "2023-11-07T05:31:56Z",
"sku": "<string>",
"images": [
{
"id": 123,
"title": "<string>",
"alternate_text": "<string>",
"sort_order": 123,
"url_tiny": "<string>",
"url_thumbnail": "<string>",
"url_standard": "<string>",
"url_zoom": "<string>",
"other_details": {}
}
],
"description": "<string>",
"pricing": [
{
"id": 123,
"customer_group_id": "<string>",
"cost_price": 123,
"listing_price": 123,
"selling_price": 123,
"min_order_quantity": 123,
"max_order_quantity": 123,
"incremental_quantity": 123,
"tax_type": "<string>",
"tax_rate": 123
}
],
"shipping": {
"is_free_shipping": false,
"is_fixed_cost_shipping": false,
"fixed_cost_shipping_price": 123,
"is_shipping_price_include_tax": true,
"availability_description": "<string>",
"ships_internationally": true,
"mid_code": "<string>",
"country_of_origin": "<string>"
},
"packaging": {
"pack_width": 123,
"pack_height": 123,
"pack_length": 123,
"pack_dry_weight": 123,
"units_per_pack": 123,
"vertical_rotation": true,
"shipper_width": 123,
"shipper_height": 123,
"shipper_length": 123,
"shipper_dry_weight": 123,
"units_per_shipper": 123
},
"promotions": [
{
"promotion_type": "<string>",
"starts_at": "<string>",
"expires_at": "<string>",
"details": [
{
"discount_type": "percentage",
"discount_percent": 123,
"discount_fixed_amount": 123,
"customer_group_id": "<string>"
}
]
}
],
"subscriptions": [
{
"subscription_plan": "<string>",
"billing_interval": 123,
"billing_frequency": "<string>",
"billing_limit": 123,
"billing_trial_days": 123,
"order_interval": 123,
"order_frequency": "<string>",
"order_limit": 123,
"fulfill_separately": true,
"subscription_price": [
{
"customer_group_id": "<string>",
"min_quantity": 123,
"suscription_price": 123
}
],
"quantity": 123
}
],
"sales_channels": [
{
"id": "<string>",
"name": "<string>",
"sales_channel_sku": "<string>"
}
],
"related_products": {
"upsell": [
{
"id": "<string>",
"name": "<string>",
"status": "draft",
"active": true,
"stock_available": true,
"short_description": "<string>",
"metadata": [
{
"name": "<string>",
"value": "<string>"
}
],
"tags": [
"<string>"
],
"product_type": "<string>",
"hsn_code": "<string>",
"categories": [
{
"id": "<string>",
"name": "<string>",
"active": true
}
],
"attributes": [
{
"attribute_id": "<string>",
"attribute_name": "<string>",
"attribute_value": "<string>",
"attribute_type": "Text"
}
],
"variant_options": [
{
"option_name": "<string>",
"option_value": [
"<string>"
]
}
],
"reviews_rating_sum": 123,
"reviews_count": 123,
"is_featured": true,
"on_offer": true,
"on_promotion": true,
"on_subscription": true,
"has_variant": true,
"variant_count": 123,
"modified_at": "2023-11-07T05:31:56Z",
"created_at": "2023-11-07T05:31:56Z",
"sku": "<string>",
"images": [
{
"id": 123,
"title": "<string>",
"alternate_text": "<string>",
"sort_order": 123,
"url_tiny": "<string>",
"url_thumbnail": "<string>",
"url_standard": "<string>",
"url_zoom": "<string>",
"other_details": {}
}
]
}
],
"cross_sell": [
{
"id": "<string>",
"name": "<string>",
"status": "draft",
"active": true,
"stock_available": true,
"short_description": "<string>",
"metadata": [
{
"name": "<string>",
"value": "<string>"
}
],
"tags": [
"<string>"
],
"product_type": "<string>",
"hsn_code": "<string>",
"categories": [
{
"id": "<string>",
"name": "<string>",
"active": true
}
],
"attributes": [
{
"attribute_id": "<string>",
"attribute_name": "<string>",
"attribute_value": "<string>",
"attribute_type": "Text"
}
],
"variant_options": [
{
"option_name": "<string>",
"option_value": [
"<string>"
]
}
],
"reviews_rating_sum": 123,
"reviews_count": 123,
"is_featured": true,
"on_offer": true,
"on_promotion": true,
"on_subscription": true,
"has_variant": true,
"variant_count": 123,
"modified_at": "2023-11-07T05:31:56Z",
"created_at": "2023-11-07T05:31:56Z",
"sku": "<string>",
"images": [
{
"id": 123,
"title": "<string>",
"alternate_text": "<string>",
"sort_order": 123,
"url_tiny": "<string>",
"url_thumbnail": "<string>",
"url_standard": "<string>",
"url_zoom": "<string>",
"other_details": {}
}
]
}
]
},
"variants": [
{
"id": "<string>",
"name": "<string>",
"sku": "<string>",
"active": true,
"hsn_code": "<string>",
"images": [
{
"id": 123,
"title": "<string>",
"alternate_text": "<string>",
"sort_order": 123,
"url_tiny": "<string>",
"url_thumbnail": "<string>",
"url_standard": "<string>",
"url_zoom": "<string>",
"other_details": {}
}
],
"pricing": [
{
"id": 123,
"customer_group_id": "<string>",
"cost_price": 123,
"listing_price": 123,
"selling_price": 123,
"min_order_quantity": 123,
"max_order_quantity": 123,
"incremental_quantity": 123,
"tax_type": "<string>",
"tax_rate": 123
}
],
"packaging": {
"pack_width": 123,
"pack_height": 123,
"pack_length": 123,
"pack_dry_weight": 123,
"units_per_pack": 123,
"vertical_rotation": true,
"shipper_width": 123,
"shipper_height": 123,
"shipper_length": 123,
"shipper_dry_weight": 123,
"units_per_shipper": 123
},
"associated_options": {}
}
],
"bundle_items": [
{
"product_id": "<string>",
"product_name": "<string>",
"quantity": 123,
"sku": "<string>",
"stock_available": true,
"pricing": {
"id": 123,
"customer_group_id": "<string>",
"cost_price": 123,
"listing_price": 123,
"selling_price": 123,
"min_order_quantity": 123,
"max_order_quantity": 123,
"incremental_quantity": 123,
"tax_type": "<string>",
"tax_rate": 123
},
"images": [
{
"id": 123,
"title": "<string>",
"alternate_text": "<string>",
"sort_order": 123,
"url_tiny": "<string>",
"url_thumbnail": "<string>",
"url_standard": "<string>",
"url_zoom": "<string>",
"other_details": {}
}
],
"reviews_rating_sum": 123,
"reviews_count": 123
}
],
"seo": {
"meta_title": "<string>",
"meta_description": "<string>",
"meta_keywords": [
"<string>"
],
"slug": "<string>"
}
}
}
}