products.update
Update already existing product within flipsnack
Request parameters
Products example as JSON type
[
{
"type": string, // required
"code": string, // required
"title": string,
"description": string,
"image_link": string,
"sell_price": number,
"currency": string,
"discount_price": number,
"quantity": boolean,
"purchasable_qty": {
"min": number,
"max": number
},
"attribute": {
"name1": string,
"options1": string,
"name2": string,
"options2": string,
"name3": string,
"options3": string
},
"image_attribute": string,
"shop_element": string,
"area_element": {
"tooltip": string,
"color": string,
"opacity": number
},
"shop_button": {
"color": string,
"label": string,
"label_color": string
},
"website": {
"button": boolean,
"button_label": string,
"link": string
},
"customizable_product": {
"product": boolean,
"instructions": string,
"flat_fee": number,
"per_character": number,
"character_length": number,
"mandatory": boolean
},
"variants": [
{
"code": string,
"parent_code": string,
"image_link": string,
"visible": boolean,
"attribute": {
"options1": string,
"options2": string,
"options3": string
},
"price": number,
"discount_price": number
}
]
}
]
Products JSON Example
Response parameters
Error codes
Examples
Request
Response
Last updated