Make changes to a menu item, always use ?identifier= in url param to identify the menu item uniquely Any blank parameter deletes an old value, any unspecified parameter does nothing
Security
X-API-KEY or Authorization
Menu Item object to update
Currency used for prices in ISO-4217: e.g. EUR, USD, CHF
Enum:"EUR""USD""GBP""CHF""AUD""RUB""JPY""AED""AFN""ALL"
Category or section of the menu item (e.g. Starters, Drinks, Desert, etc.)
Example:"Starters, Drinks, Desert, etc."
Allergens in the food item (e.g. Eggs, Dairy, Wheat, etc.)
Example:"Eggs, Dairy, Wheat, etc."
- https://uberall.com/apihttps://uberall.com/api/menu-items
- Mock Serverhttps://docs.uberall.com/_mock/apis/swagger/menu-items
- X-API-KEY
- Authorization
curl -i -X PATCH \
https://uberall.com/api/menu-items \
-H 'Content-Type: application/json' \
-H 'X-API-KEY: YOUR_API_KEY_HERE' \
-d '{
"title": "string",
"description": "string",
"identifier": "string",
"listName": "string",
"id": 0,
"price": 0,
"currency": "EUR",
"category": "Starters, Drinks, Desert, etc.",
"image": {
"id": 0,
"url": "string",
"type": "LOGO",
"description": "string",
"uid": "string"
},
"url": "string",
"priceMax": 0,
"caloriesLow": 0,
"caloriesHigh": 0,
"allergens": "Eggs, Dairy, Wheat, etc.",
"dietaryRestrictions": "Vegetarian, Halal, etc."
}'Menu Item successfully updated
Enum:"SUCCESS""PENDING""QUOTA_LIMIT_EXCEED""NOT_AUTHORIZED""FORBIDDEN""BAD_ACCESS_TOKEN""BAD_PRIVATE_KEY""BAD_PUBLIC_KEY""MISSING_PARAMETER""INVALID_PARAMETER"
Response
{ "status": "SUCCESS", "message": "string", "warnings": [ "string" ], "response": { "menuItem": { … } } }