Custom Items
Update a Custom Item
Make changes to a custom item. Any blank parameter deletes an old value, any unspecified parameter does nothing
patch/custom-items/{id}
Path parameters
idstring required
The uberall unique id for the custom item
Request body
Example request
{
"category": "Coffee",
"unit": "per kg"
}Response
Successfully updated custom item
Example response
{
"response": {
"customItem": {
"category": "Coffee",
"unit": "per kg"
}
}
}