Collection Management
Update a Collection
Update a specific Collection by id
patch/collections/{id}
Path parameters
idstring required
The uberall unique id of the Collection to update
Request body
Example request
{
"contentLists": [
{
"title": "Lunch Menu",
"items": [
{
"category": "Starters, Drinks, Desert, etc."
}
]
}
]
}Response
Collection updated
Example response
{
"response": {
"collection": {
"contentLists": [
{
"title": "Lunch Menu",
"items": [
{
"category": "Starters, Drinks, Desert, etc."
}
]
}
]
}
}
}