GET ticket_services/TimedTicketExtra?TimedTicketTypeId={TimedTicketTypeId}&CostRateId={CostRateId}
Returns Extra Items attached to the Booking. Extra Items are things that are optionally attached to a Booking that a customer can choose to add to their cart (an example might be Lunch, Hat, T-Shirt etc).
Requires: HTTPS, Basic Auth.
Request Information
Parameters
| Name | Description | Additional information |
|---|---|---|
| TimedTicketTypeId | Timed Ticket Type Id (Integer). 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:
[
{
"ExtraId": 1,
"ExtraDescription": "sample string 2",
"ExtraPrice": 3.0,
"DepositPercentage": 4.1,
"IsTaxInclusive": true,
"TaxPercentage": 1.1
},
{
"ExtraId": 1,
"ExtraDescription": "sample string 2",
"ExtraPrice": 3.0,
"DepositPercentage": 4.1,
"IsTaxInclusive": true,
"TaxPercentage": 1.1
},
{
"ExtraId": 1,
"ExtraDescription": "sample string 2",
"ExtraPrice": 3.0,
"DepositPercentage": 4.1,
"IsTaxInclusive": true,
"TaxPercentage": 1.1
}
]