Update product attributes
Set attribute values on an existing product.
Get current values
PRODUCT_ID="your-product-uuid"
curl -s "https://api.catazenta.com/v1/products/${PRODUCT_ID}/attributes" \
-H "Authorization: Bearer ${TOKEN}"
Patch values
curl -s -X PATCH "https://api.catazenta.com/v1/products/${PRODUCT_ID}/attributes" \
-H "Authorization: Bearer ${TOKEN}" \
-H "Content-Type: application/json" \
-d '{
"attributes": [
{
"attribute_id": "ATTRIBUTE_UUID",
"values": ["Running shoe"]
}
]
}'
For localized text attributes, include locale codes per your family configuration.
MCP alternative
“Set the description attribute on product PRODUCT_ID to …”
See MCP overview.