An item is a product that can be sold to a member. It can be a food item, or a drink or something else.
Please note: Items and tickets are two different entities. Items are products that can be sold to a member, while tickets are the type of ticket that a member can purchase at the box office.
An item is a product that can be sold in a cinema.
item_id required | string (Item_id) The |
name required | string The name of the item. This is how the item will be displayed within Movio EQ. |
type required | string Default: "CONCESSION" The type of the item. This is how the item will be categorized within Movio EQ. A |
tags | Array of strings (Tags) <= 10 items A list of tags that are used to group items together. |
{- "item_id": "concession_popcorn_lrg_unbuttered",
- "name": "Large Unbuttered Popcorn",
- "type": "CONCESSION",
- "tags": [
- "popcorn",
- "unbuttered"
]
}
Creates or updates an item in the system. This will create the item in
Movio if the item does not exist. If the item exists, then the item with
the same item_id
will be one to one replaced with the new item.
The items to be created.
The response to a bulk request that succeeded.
The response to a bulk request that failed.
The request has not been applied because it lacks valid authentication credentials for the target resource.
The request was well-formed but was unable to be followed due to semantic errors.
[- {
- "item_id": "concession_popcorn_lrg_unbuttered",
- "name": "Large Unbuttered Popcorn",
- "type": "CONCESSION",
- "tags": [
- "popcorn",
- "unbuttered"
]
}
]
{- "total": 3,
- "created_count": 2,
- "updated_count": 1
}
Deletes an item from the system. This effectively remove the item from Movio. Useful when an item is no longer available for purchase. Movio will keep the item in the system for historical purposes.
The item was deleted successfully.
The request could not be understood by the server due to malformed syntax.
The request has not been applied because it lacks valid authentication credentials for the target resource.
The request was well-formed but was unable to be followed due to semantic errors.
The request could not be understood by the server due to malformed syntax. The client should not repeat the request without modifications.