Update product
PUT
/products/{productId}
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request PUT '/products/' \
--header 'X-Identifier: {{x_identifier}}' \
--header 'Authorization: Bearer {{token}}' \
--header 'Accept: application/json' \
--header 'Content-Type: application/json' \
--data-raw '{
"status": "draft",
"meta_title": "string",
"meta_description": "string",
"name": "string",
"external_reference": "string",
"description": "string",
"short_description": "string",
"slug": "string",
"hs_code": "string",
"country_of_origin": "string",
"type": "standard",
"categories": [
{
"name": "string",
"external_identifier": "string",
"update_on_exists": true
}
],
"brand_name": "string",
"supplier_name": "string",
"attributes": [
{
"key": "string",
"value": "string",
"is_feature": true,
"is_labeled": true
}
],
"specifications": [
{
"title": "string",
"specifications": [
{
"key": "string",
"value": "string",
"is_featured": true
}
]
}
],
"filter_tags": [
"string"
],
"images": [
"string"
]
}'
Response Response Example
{}
Request
Path Params
productId
string
required
Header Params
X-Identifier
string
optional
Example:
{{x_identifier}}
Authorization
string
optional
Example:
Bearer {{token}}
Accept
string
optional
Example:
application/json
Content-Type
string
optional
Example:
application/json
Body Params application/json