GET ticket_services/TimedTicket?TimedTicketTypeId={TimedTicketTypeId}&CostRateId={CostRateId}
Returns Tickets for the selected Timed Ticket Type. Examples might be Adult Entry, Child Entry, etc.
Requires: HTTPS, Basic Auth.
Request Information
Parameters
| Name | Description | Additional information |
|---|---|---|
| TimedTicketTypeId | (Integer) Timed Ticket Type Id. Required. |
Define this parameter in the request URI. |
| CostRateId | Cost Rate Id (Integer). Optional. |
Define this parameter in the request URI. |
Response Information
Response body formats
application/json, text/json
Sample:
[
{
"TicketId": 1,
"TicketDescription": "sample string 2",
"TicketPrice": 3.0,
"TicketBookingFee": 4.0,
"TicketFeeItemId": 5,
"DepositPercentage": 6.1,
"IsTaxInclusive": true,
"TaxPercentage": 1.1
},
{
"TicketId": 1,
"TicketDescription": "sample string 2",
"TicketPrice": 3.0,
"TicketBookingFee": 4.0,
"TicketFeeItemId": 5,
"DepositPercentage": 6.1,
"IsTaxInclusive": true,
"TaxPercentage": 1.1
},
{
"TicketId": 1,
"TicketDescription": "sample string 2",
"TicketPrice": 3.0,
"TicketBookingFee": 4.0,
"TicketFeeItemId": 5,
"DepositPercentage": 6.1,
"IsTaxInclusive": true,
"TaxPercentage": 1.1
}
]