POST ticket_services/TimedTicketType
This method is called to temporarily reserve tickets while the customer completes the transaction. Tickets that have been reserved reduce the Vacancy count for other web sessions as well as desktop Point Of Sale. The temporary reservation is removed when the customer completes purchase and the reservation becomes permanent or when they end the browser session (a Windows service periodically checks for reserved tickets that have expired).
Requires: HTTPS, Basic Auth.
Request Information
Parameters
| Name | Description | Additional information |
|---|---|---|
| Tickets | TimedTicketTypeId: (Integer) TimedTicketType Id (Centaman Internal Id). Required.
TimedTicketId: (Integer) Timed Ticket Id. Required.
NumberOfTickets: (integer) Number of spots reserving for TimedTicket. Required. |
Define this parameter in the request body. |
Request body formats
application/json, text/json
Sample:
[
{
"TimedTicketTypeId": 1,
"TimedTicketId": 2,
"NumberOfTickets": 3
},
{
"TimedTicketTypeId": 1,
"TimedTicketId": 2,
"NumberOfTickets": 3
},
{
"TimedTicketTypeId": 1,
"TimedTicketId": 2,
"NumberOfTickets": 3
}
]
Response Information
Response body formats
application/json, text/json
Sample:
true