GET ticket_services/TimedTicketType?TimedTicketTypeId={TimedTicketTypeId}&StartDate={StartDate}
Returns the remaining capacity of the event. The TimedTicketTypeId of the booking selected by the customer and the event start date are inputs. The vacancy is the number of spaces available.
Requires: HTTPS, Basic Auth.
Request Information
Parameters
| Name | Description | Additional information |
|---|---|---|
| TimedTicketTypeId | (Integer) TimedTicketTypeId. |
Define this parameter in the request URI. |
| StartDate | (Date) Start Date of the TimedTicket. Required. |
Define this parameter in the request URI. |
Response Information
Response body formats
application/json, text/json
Sample:
[
{
"TimedTicketTypeId": 1,
"TimedTicketTypeDescription": "sample string 2",
"Capacity": 3,
"vacancy": 4
},
{
"TimedTicketTypeId": 1,
"TimedTicketTypeDescription": "sample string 2",
"Capacity": 3,
"vacancy": 4
},
{
"TimedTicketTypeId": 1,
"TimedTicketTypeDescription": "sample string 2",
"Capacity": 3,
"vacancy": 4
}
]