A ticket is a product that can be sold in a cinema.
ticket_id required | string (Ticket_id) The |
name required | string The name of the ticket. |
tags | Array of strings (Tags) <= 10 items A list of tags that are used to group items together. |
{- "ticket_id": "adult_ticket",
- "name": "Adult Ticket",
- "type": "box_office",
- "tags": [
- "adult",
- "promotion"
]
}
Creates or updates a ticket in the system. This will create the ticket
in Movio if the ticket does not exist. If the ticket exists, then the
ticket with the same ticket_id
will be one to one replaced with the new
ticket.
The tickets 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.
[- {
- "ticket_id": "adult_ticket",
- "name": "Adult Ticket",
- "type": "box_office",
- "tags": [
- "adult",
- "promotion"
]
}
]
{- "total": 3,
- "created_count": 2,
- "updated_count": 1
}
Deletes a ticket from the system. This effectively remove the ticket from Movio. Useful when a ticket is no longer available for purchase. Movio will keep the ticket in the system for historical purposes.
The ticket 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.