ProductModifier
Create Product Modifier
Add a modifier to a product.
Authorization
default AuthorizationBearer <token>
You can retrieve your token by logging in.
In: header
Path Parameters
productId*string
Header Parameters
X-API-Version*string
API contract version to target. See the Changelog for what changed in each version.
Default
"2.0.0"Value in
"2.3.0" | "2.2.0" | "2.1.0" | "2.0.0"Request Body
application/json
name_en?|
Must not be greater than 191 characters.
name_ar?|
Must not be greater than 191 characters.
barcode?|
sku?|
Must not be greater than 191 characters.
type*string
Value in
"OPTION" | "OPTION_VARIABLE"calorie?|
Must be at least 0.
stock?|
Must be at least 0.
price?|
cost?|
Must be at least 0.
is_tax_included*boolean
weight_unit?|
This field is required when options.*.weight_amount is present.
weight_amount?|
This field is required when options.*.weight_unit is present. Must be at least 0.
ingredients?array<|>
Must have at least 1 items.
recipes?array<|>
Must have at least 1 items.
prices?array<|>
Must have at least 1 items.
additionals?array<|>
Must have at least 1 items.
Response Body
application/json
application/json
application/json
application/json
application/json
application/json
curl -X POST "https://api.flavours.sa/dev/api/v2/products/sit/modifiers" \ -H "X-API-Version: 2.3.0" \ -H "Content-Type: application/json" \ -d '{ "type": "OPTION", "is_tax_included": false }'{
"meta": {
"code": 200,
"status": "success",
"message": "Modifier created successfully."
},
"data": {
"id": 717712181061814,
"modifierable_id": "41a45926-7f75-481d-a78a-682ba4a647a1",
"name_en": "Repellendus expedita",
"name_ar": "asperiores",
"type": "OPTION",
"calorie": null,
"price": 33.11,
"tax": 0,
"total": 33.11,
"cost": null,
"profit": null,
"is_tax_included": true,
"deleted_at": null,
"barcode": null,
"barcode_img": null,
"weight_amount": null,
"weight_unit": null,
"market_id": "848aa3f5-fc3d-42d3-8cc9-4c6edd0140d0",
"branch_id": "7c538fd7-9547-4b16-959d-f01052e04c6f",
"modifierable_type": "PRODUCT_MODIFIER_PRODUCT",
"stock": null,
"product_id": "41a45926-7f75-481d-a78a-682ba4a647a1",
"sku": null,
"ingredients": [],
"prices": [],
"product": {
"id": "41a45926-7f75-481d-a78a-682ba4a647a1",
"market_id": "848aa3f5-fc3d-42d3-8cc9-4c6edd0140d0",
"branch_id": "7c538fd7-9547-4b16-959d-f01052e04c6f",
"name_en": "Aut corporis",
"name_ar": "quia",
"description_en": null,
"description_ar": null,
"stock": 50,
"order": 63,
"images": null,
"is_active": true,
"created_at": 1787446700294,
"updated_at": 1787446700294,
"deleted_at": null,
"rating_amount": 0,
"rating_avg": "0.00",
"sold_amount": 0,
"sold_revenue": 0,
"qoyod_id": null,
"min_additionals": null,
"max_additionals": null,
"is_global": false,
"product_category_id": null,
"preparation_time": null,
"category": null
},
"recipes": []
}
}{
"meta": {
"code": 401,
"status": "error",
"message": "Unauthenticated."
},
"data": null
}{
"meta": {
"code": 403,
"status": "error",
"message": "Unauthorized."
},
"data": null
}{
"meta": {
"code": 404,
"status": "error",
"message": "Resource not found."
},
"data": null
}{
"meta": {
"code": 422,
"status": "error",
"message": "The selected type is invalid. (and 1 more error)"
},
"data": [
{
"code": 0,
"message": "The selected type is invalid.",
"field": "type"
},
{
"code": 0,
"message": "The is tax included field is required.",
"field": "is_tax_included"
}
]
}{
"meta": {
"code": 500,
"status": "error",
"message": "Internal server error."
},
"data": null
}