Add Addons
Developing
POST
{{ecommercev2_url}}/addons
Request Request Example
Shell
JavaScript
Java
Swift
curl --location -g --request POST '{{ecommercev2_url}}/addons' \
--header 'x-client: {{client}}' \
--header 'accept-language: {{acceptLanguage}}' \
--header 'Content-Type: application/json' \
--header 'x-access-token;' \
--data-raw '{
"label": {
"en": "Sauce Options",
"ar": "خيارات الصوص"
},
"image": {
"id": "64e8b7c2f1a2b3c4d5e6f7a8",
"path": "https://cdn.example.com/images/sauce.png"
},
"minSelection": 1,
"maxSelection": 2,
"addonValues": [
{
"label": {
"en": "Garlic Sauce",
"ar": "صوص الثوم"
},
"image": {
"_id": "64e8b7c2f1a2b3c4d5e6f7a9",
"path": "https://cdn.example.com/images/garlic.png"
},
"price": 10,
"minSelection": 1,
"maxSelection": 2
},
{
"label": {
"en": "Spicy Sauce",
"ar": "صوص حار"
},
"image": null,
"price": 10,
"minSelection": 1,
"maxSelection": 2
}
]
}'
Response Response Example
{"label":{"ar":"خيارات الصوص","defaultTranslation":"Sauce Options","en":"Sauce Options"},"minSelection":1,"maxSelection":2,"addonValues":[{"id":"6810b1a5a07cb057db0ac4e1","label":{"ar":"صوص الثوم","defaultTranslation":"Garlic Sauce","en":"Garlic Sauce"},"image":{"_id":"64e8b7c2f1a2b3c4d5e6f7a9","path":"https://cdn.example.com/images/garlic.png"},"price":0.5,"minSelection":0,"maxSelection":1},{"id":"6810b1a5a07cb057db0ac4e2","label":{"ar":"صوص حار","defaultTranslation":"Spicy Sauce","en":"Spicy Sauce"},"price":0.7,"minSelection":0,"maxSelection":1}],"id":"6810b1a5a07cb057db0ac4e3","createdAt":"2025-04-29T11:01:57.265Z","createdBy":"667917cabd1516884a1af8fe","updatedAt":"2025-04-29T11:01:57.265Z","updatedBy":"667917cabd1516884a1af8fe"}
Request
Header Params
x-access-token
string
required
Example:
{{admin-token}}
x-client
string
required
Example:
{{client}}
accept-language
string
required
Example:
{{acceptLanguage}}
Body Params application/json
Responses
Modified at 2025-05-20 15:10:34