API Reference//
- Create a Content List
Get All Content Lists
Get a Content List
Delete a Content List
Update a Content List
Create a Content List
Create a content list
Security
X-API-KEY or Authorization
A ContentList object
Array []
The type of content list. One of SERVICES, PRODUCTS, MENU, PEOPLE or CUSTOM. The type cannot be updated after creation.
Enum:"MENU""PEOPLE""PRODUCTS""CUSTOM""SERVICES""EVENTS""FAQ"
Language translations for the section title of a content collection
Example:
[ { "hu": { … }, "fr": { … } } ]
- https://uberall.com/apihttps://uberall.com/api/content-lists
- Mock Serverhttps://docs.uberall.com/_mock/apis/swagger/content-lists
- X-API-KEY
- Authorization
curl -i -X POST \
https://uberall.com/api/content-lists \
-H 'Content-Type: application/json' \
-H 'X-API-KEY: YOUR_API_KEY_HERE' \
-d '[
{
"id": 0,
"title": "Lunch Menu",
"type": "MENU",
"description": "string",
"translations": [
{
"hu": {
"title": "Magyar"
},
"fr": {
"title": "Titre Français"
}
}
],
"items": [
{
"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."
}
]
}
]'Content List successfully created
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": {
"contentList": {
"id": 0,
"title": "Lunch Menu",
"type": "MENU",
"description": "string",
"translations": [
{
"hu": {
"title": "Magyar"
},
"fr": {
"title": "Titre Français"
}
}
],
"items": [
{
"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."
}
]
}
}
}