Download OpenAPI specification:
The Go City Trade API is for trade partners to create and manage their Go City orders. This version of the API is compliant with the OCTO standards. As of Nov 2024 it is not yet ready for testing or usage but we are providing this documentation so that our API consumers can prepare their migrations. It does not interfere with the V1 API in any way.
We currently support Bearer token authorization on all of the endpoints. You should receive credentials/instructions from your connectivity manager.
Our octo implementation provides certain capabilities when making requests such as including pricing.
To do this with us, you may include the Octo-Capabilities header, or the _capabilities
request parameter to enable a capability. Currently only the octo/pricing capability is supported.
To enable pricing you can either:
Use the headers - include a header with key Octo-Capabilities and value octo/pricing.
OR use request parameters - add a request parameter with name _capabilities and value octo/pricing
At Go City, our products are our passes. Under the OCTO specification, we have one product per a combination of destination, brand [Go City, Great, Big Bus, Omnia], duration type [Days (All-Inclusive), Choices (Explorer)], and variant [Standard, Plus, Lite, Deluxe, Single-Sell]. Within each combination, we have multiple options for each duration and type [Pass, Extension], e.g 1-Day Standard Pass or 1-Choice Extension. Within our Chicago Go City All-Inclusive Standard product, we have 1 Day Standard Pass. Each option then has three possible units; an Adult unit, a Child unit, and a VIP unit.
Fetch the list of products. Prices are included.
| priceDistributionModel | string Default: "PUBLIC" Possible values are PUBLIC, or RESTRICTED. Defaults to PUBLIC if not specified. |
[- {
- "id": "9badb9eb-859b-37b6-9546-29f3a253d5f4",
- "internalName": "Chicago Explorer Pass",
- "reference": "CHI Go C Df",
- "locale": "en",
- "timeZone": "America/Chicago",
- "allowFreesale": true,
- "instantConfirmation": true,
- "instantDelivery": true,
- "availabilityRequired": true,
- "destinationId": "b083eec7-4310-4c38-8761-b3a323553336",
- "destinationName": "Chicago",
- "brand": "Go City",
- "durationType": "CHOICE",
- "variant": "Default",
- "availabilityType": "OPENING_HOURS",
- "deliveryFormats": [
- "HTML_URL",
- "PDF_URL"
], - "deliveryMethods": [
- "TICKET",
- "VOUCHER"
], - "redemptionMethod": "DIGITAL",
- "options": [
- {
- "id": "a91cb3bc-08a9-3414-a876-67507b035f9a",
- "default": false,
- "internalName": "Chicago Explorer Pass 6-Choice",
- "reference": "CHI Go 6C Df Ps",
- "durationValue": 6,
- "optionType": "PASS",
- "availabilityLocalStartTimes": [ ],
- "cancellationCutoff": "365 days",
- "cancellationCutoffAmount": -365,
- "cancellationCutoffUnit": "day",
- "requiredContactFields": [
- "emailAddress"
], - "restrictions": {
- "minUnits": 0,
- "maxUnits": 50
}, - "units": [
- {
- "id": "7ee0b2cf-3c76-430c-9aa3-1ded205e86a2",
- "internalName": "Chicago Explorer Pass 6-Choice Child",
- "reference": "Ch",
- "type": "CHILD",
- "requiredContactFields": [ ],
- "restrictions": {
- "minAge": 3,
- "maxAge": 12,
- "idRequired": false,
- "minQuantity": 0,
- "maxQuantity": 50,
- "paxCount": 1,
- "accompaniedBy": [ ]
}, - "pricingFrom": null,
- "pricing": null
}, - {
- "id": "8a435677-1413-4012-8f5e-18eb15f54985",
- "internalName": "Chicago Explorer Pass 6-Choice Adult",
- "reference": "Ad",
- "type": "ADULT",
- "requiredContactFields": [ ],
- "restrictions": {
- "minAge": 13,
- "maxAge": 0,
- "idRequired": false,
- "minQuantity": 0,
- "maxQuantity": 50,
- "paxCount": 1,
- "accompaniedBy": [ ]
}, - "pricingFrom": null,
- "pricing": null
}
], - "pricingFrom": null,
- "pricing": null
}
], - "defaultCurrency": null,
- "availableCurrencies": null,
- "pricingPer": null
}
]Fetch the product for the given id. Prices are included.
| id required | string Product ID – the ID of a unit |
| priceDistributionModel | string Default: "PUBLIC" Possible values are PUBLIC, or RESTRICTED. Defaults to PUBLIC if not specified. |
{- "id": "9badb9eb-859b-37b6-9546-29f3a253d5f4",
- "internalName": "Chicago Explorer Pass",
- "reference": "CHI Go C Df",
- "locale": "en",
- "timeZone": "America/Chicago",
- "allowFreesale": true,
- "instantConfirmation": true,
- "instantDelivery": true,
- "availabilityRequired": true,
- "destinationId": "b083eec7-4310-4c38-8761-b3a323553336",
- "destinationName": "Chicago",
- "brand": "Go City",
- "durationType": "CHOICE",
- "variant": "Default",
- "availabilityType": "OPENING_HOURS",
- "deliveryFormats": [
- "HTML_URL",
- "PDF_URL"
], - "deliveryMethods": [
- "TICKET",
- "VOUCHER"
], - "redemptionMethod": "DIGITAL",
- "options": [
- {
- "id": "a91cb3bc-08a9-3414-a876-67507b035f9a",
- "default": false,
- "internalName": "Chicago Explorer Pass 6-Choice",
- "reference": "CHI Go 6C Df Ps",
- "durationValue": 6,
- "optionType": "PASS",
- "availabilityLocalStartTimes": [ ],
- "cancellationCutoff": "365 days",
- "cancellationCutoffAmount": -365,
- "cancellationCutoffUnit": "day",
- "requiredContactFields": [
- "emailAddress"
], - "restrictions": {
- "minUnits": 0,
- "maxUnits": 50
}, - "units": [
- {
- "id": "7ee0b2cf-3c76-430c-9aa3-1ded205e86a2",
- "internalName": "Chicago Explorer Pass 6-Choice Child",
- "reference": "Ch",
- "type": "CHILD",
- "requiredContactFields": [ ],
- "restrictions": {
- "minAge": 3,
- "maxAge": 12,
- "idRequired": false,
- "minQuantity": 0,
- "maxQuantity": 50,
- "paxCount": 1,
- "accompaniedBy": [ ]
}, - "pricingFrom": null,
- "pricing": null
}, - {
- "id": "8a435677-1413-4012-8f5e-18eb15f54985",
- "internalName": "Chicago Explorer Pass 6-Choice Adult",
- "reference": "Ad",
- "type": "ADULT",
- "requiredContactFields": [ ],
- "restrictions": {
- "minAge": 13,
- "maxAge": 0,
- "idRequired": false,
- "minQuantity": 0,
- "maxQuantity": 50,
- "paxCount": 1,
- "accompaniedBy": [ ]
}, - "pricingFrom": null,
- "pricing": null
}
], - "pricingFrom": null,
- "pricing": null
}
], - "defaultCurrency": null,
- "availableCurrencies": null,
- "pricingPer": null
}Even though our products are always available, we have implemented the Availability step of the OCTO journey for the convenience of our API consumers.
Check availability before making a booking. This endpoint will return an object for each individual departure time (or day). You have to perform this step to retrieve an availabilityId in order to confirm a sale.
| priceDistributionModel | string Default: "PUBLIC" Possible values are PUBLIC, or RESTRICTED. Defaults to PUBLIC if not specified. |
| productId | string |
| optionId | string |
Array of objects | |
| availabilityIds | Array of strings |
{- "productId": "b562eb9f-1836-38e9-9184-4099888e53c3",
- "optionId": "1859be8e-4c33-4cda-a0bd-f2bf4e7a589c",
- "units": [
- {
- "id": "2859be8e-4c33-4cda-a0bd-f2bf4e7a589d",
- "quantity": 1
}
], - "localDateStart": "2025-06-01",
- "localDateEnd": "2025-06-10"
}[- {
- "id": "2025-08-12T00:00:00Z",
- "localDateTimeStart": "2025-08-12T00:00:00Z",
- "localDateTimeEnd": "2025-08-13T00:00:00Z",
- "allDay": true,
- "available": true,
- "status": "FREESALE",
- "vacancies": null,
- "capacity": 10000,
- "maxUnits": 50,
- "utcCutoffAt": "2025-08-12T23:59:59Z",
- "openingHours": [
- {
- "from": "00:00",
- "to": "23:59"
}
], - "unitPricing": null,
- "pricing": null
}
]To buy a pass you must first create a Booking and then confirm it. With your booking ID you can then make modifications to your pass order.
This endpoint will fetch the bookings you have made for the given filters.
| resellerReference | string The reseller reference on the booking. |
| supplierReference | string The reference provided by the supplier. |
| localDate | string All bookings made for a specific date. |
| localDateStart | string First date of a date range search. |
| localDateEnd | string Last date of a date range search. |
| productId | string The product id to filter by. |
| optionId | string The option id to filter by. |
[- {
- "id": "3afbaa05-c65b-4492-af39-43c863270435",
- "uuid": "3afbaa05-c65b-4492-af39-43c863270435",
- "supplierReference": "0201055476",
- "resellerReference": "pao-regression-p34",
- "testMode": true,
- "status": "CONFIRMED",
- "utcCreatedAt": "2025-08-11T15:47:22Z",
- "utcUpdatedAt": "2025-08-11T15:47:22Z",
- "utcExpiresAt": "2026-08-12T05:00:00Z",
- "redeemedAt": null,
- "utcConfirmedAt": "2025-08-11T15:47:22Z",
- "productId": "9badb9eb-859b-37b6-9546-29f3a253d5f4",
- "product": {
- "id": "9badb9eb-859b-37b6-9546-29f3a253d5f4",
- "internalName": "Chicago Explorer Pass",
- "reference": "CHI Go C Df",
- "locale": "en",
- "timeZone": "America/Chicago",
- "allowFreesale": true,
- "instantConfirmation": true,
- "instantDelivery": true,
- "availabilityRequired": true,
- "destinationId": "b083eec7-4310-4c38-8761-b3a323553336",
- "destinationName": "Chicago",
- "brand": "Go City",
- "durationType": "CHOICE",
- "variant": "Default",
- "availabilityType": "OPENING_HOURS",
- "deliveryFormats": [
- "HTML_URL",
- "PDF_URL"
], - "deliveryMethods": [
- "TICKET",
- "VOUCHER"
], - "redemptionMethod": "DIGITAL",
- "options": [
- {
- "id": "a91cb3bc-08a9-3414-a876-67507b035f9a",
- "default": false,
- "internalName": "Chicago Explorer Pass 6-Choice",
- "reference": "CHI Go 6C Df Ps",
- "durationValue": 6,
- "optionType": "PASS",
- "availabilityLocalStartTimes": [ ],
- "cancellationCutoff": "365 days",
- "cancellationCutoffAmount": -365,
- "cancellationCutoffUnit": "day",
- "requiredContactFields": [
- "emailAddress"
], - "restrictions": {
- "minUnits": 0,
- "maxUnits": 50
}, - "units": [
- {
- "id": "7ee0b2cf-3c76-430c-9aa3-1ded205e86a2",
- "internalName": "Chicago Explorer Pass 6-Choice Child",
- "reference": "Ch",
- "type": "CHILD",
- "requiredContactFields": [ ],
- "restrictions": {
- "minAge": 3,
- "maxAge": 12,
- "idRequired": false,
- "minQuantity": 0,
- "maxQuantity": 50,
- "paxCount": 1,
- "accompaniedBy": [ ]
}, - "pricingFrom": null,
- "pricing": null
}, - {
- "id": "8a435677-1413-4012-8f5e-18eb15f54985",
- "internalName": "Chicago Explorer Pass 6-Choice Adult",
- "reference": "Ad",
- "type": "ADULT",
- "requiredContactFields": [ ],
- "restrictions": {
- "minAge": 13,
- "maxAge": 0,
- "idRequired": false,
- "minQuantity": 0,
- "maxQuantity": 50,
- "paxCount": 1,
- "accompaniedBy": [ ]
}, - "pricingFrom": null,
- "pricing": null
}
], - "pricingFrom": null,
- "pricing": null
}
], - "defaultCurrency": null,
- "availableCurrencies": null,
- "pricingPer": null
}, - "optionId": "a91cb3bc-08a9-3414-a876-67507b035f9a",
- "option": {
- "id": "a91cb3bc-08a9-3414-a876-67507b035f9a",
- "default": false,
- "internalName": "Chicago Explorer Pass 6-Choice",
- "reference": "CHI Go 6C Df Ps",
- "durationValue": 6,
- "optionType": "PASS",
- "availabilityLocalStartTimes": [ ],
- "cancellationCutoff": "365 days",
- "cancellationCutoffAmount": -365,
- "cancellationCutoffUnit": "day",
- "requiredContactFields": [
- "emailAddress"
], - "restrictions": {
- "minUnits": 0,
- "maxUnits": 50
}, - "units": [
- {
- "id": "7ee0b2cf-3c76-430c-9aa3-1ded205e86a2",
- "internalName": "Chicago Explorer Pass 6-Choice Child",
- "reference": "Ch",
- "type": "CHILD",
- "requiredContactFields": [ ],
- "restrictions": {
- "minAge": 3,
- "maxAge": 12,
- "idRequired": false,
- "minQuantity": 0,
- "maxQuantity": 50,
- "paxCount": 1,
- "accompaniedBy": [ ]
}, - "pricingFrom": null,
- "pricing": null
}, - {
- "id": "8a435677-1413-4012-8f5e-18eb15f54985",
- "internalName": "Chicago Explorer Pass 6-Choice Adult",
- "reference": "Ad",
- "type": "ADULT",
- "requiredContactFields": [ ],
- "restrictions": {
- "minAge": 13,
- "maxAge": 0,
- "idRequired": false,
- "minQuantity": 0,
- "maxQuantity": 50,
- "paxCount": 1,
- "accompaniedBy": [ ]
}, - "pricingFrom": null,
- "pricing": null
}
], - "pricingFrom": null,
- "pricing": null
}, - "cancellable": true,
- "cancellation": null,
- "freesale": false,
- "availabilityId": "2025-08-07T00:00:00Z",
- "availability": {
- "id": "2025-08-07T00:00:00Z",
- "localDateTimeStart": "2025-08-07T00:00:00Z",
- "localDateTimeEnd": "2025-08-08T00:00:00Z",
- "allDay": true,
- "available": true,
- "status": "FREESALE",
- "vacancies": null,
- "capacity": 10000,
- "maxUnits": 50,
- "utcCutoffAt": "2025-08-07T23:59:59Z",
- "openingHours": [
- {
- "from": "00:00",
- "to": "23:59"
}
], - "unitPricing": null,
- "pricing": null
}, - "contact": {
- "fullName": null,
- "firstName": null,
- "lastName": null,
- "phoneNumber": null,
- "locales": [
- "es"
], - "postalCode": null,
- "country": null,
- "notes": null
}, - "notes": null,
- "deliveryMethods": [
- "TICKET",
- "VOUCHER"
], - "voucher": {
- "redemptionMethod": "DIGITAL",
- "utcRedeemedAt": null,
- "deliveryOptions": [
]
}, - "unitItems": [
- {
- "uuid": "41c27694-f546-44cd-9fb4-2951f8c800f7",
- "supplierReference": "700232431000",
- "resellerReference": "pao-regression-p34",
- "unitId": "8a435677-1413-4012-8f5e-18eb15f54985",
- "unit": {
- "id": "8a435677-1413-4012-8f5e-18eb15f54985",
- "internalName": "Chicago Explorer Pass 6-Choice Adult",
- "reference": "Ad",
- "type": "ADULT",
- "requiredContactFields": [ ],
- "restrictions": {
- "minAge": 13,
- "maxAge": 0,
- "idRequired": false,
- "minQuantity": 0,
- "maxQuantity": 50,
- "paxCount": 1,
- "accompaniedBy": [ ]
}, - "pricingFrom": null,
- "pricing": null
}, - "status": "CONFIRMED",
- "utcRedeemedAt": null,
- "contact": {
- "fullName": null,
- "firstName": null,
- "lastName": null,
- "phoneNumber": null,
- "locales": [
- "es"
], - "postalCode": null,
- "country": null,
- "notes": null
}, - "ticket": {
- "redemptionMethod": "DIGITAL",
- "utcRedeemedAt": null,
- "deliveryOptions": [
]
}
}, - {
- "uuid": "7fa7be2d-b36e-4b5c-aee7-dc201b94b4b1",
- "supplierReference": "700232431001",
- "resellerReference": "pao-regression-p34",
- "unitId": "8a435677-1413-4012-8f5e-18eb15f54985",
- "unit": {
- "id": "8a435677-1413-4012-8f5e-18eb15f54985",
- "internalName": "Chicago Explorer Pass 6-Choice Adult",
- "reference": "Ad",
- "type": "ADULT",
- "requiredContactFields": [ ],
- "restrictions": {
- "minAge": 13,
- "maxAge": 0,
- "idRequired": false,
- "minQuantity": 0,
- "maxQuantity": 50,
- "paxCount": 1,
- "accompaniedBy": [ ]
}, - "pricingFrom": null,
- "pricing": null
}, - "status": "CONFIRMED",
- "utcRedeemedAt": null,
- "contact": {
- "fullName": null,
- "firstName": null,
- "lastName": null,
- "phoneNumber": null,
- "locales": [
- "es"
], - "postalCode": null,
- "country": null,
- "notes": null
}, - "ticket": {
- "redemptionMethod": "DIGITAL",
- "utcRedeemedAt": null,
- "deliveryOptions": [
]
}
}, - {
- "uuid": "43635136-c873-48f9-a0e5-a874a6c8b343",
- "supplierReference": "700232432002",
- "resellerReference": "pao-regression-p34",
- "unitId": "7ee0b2cf-3c76-430c-9aa3-1ded205e86a2",
- "unit": {
- "id": "7ee0b2cf-3c76-430c-9aa3-1ded205e86a2",
- "internalName": "Chicago Explorer Pass 6-Choice Child",
- "reference": "Ch",
- "type": "CHILD",
- "requiredContactFields": [ ],
- "restrictions": {
- "minAge": 3,
- "maxAge": 12,
- "idRequired": false,
- "minQuantity": 0,
- "maxQuantity": 50,
- "paxCount": 1,
- "accompaniedBy": [ ]
}, - "pricingFrom": null,
- "pricing": null
}, - "status": "CONFIRMED",
- "utcRedeemedAt": null,
- "contact": {
- "fullName": null,
- "firstName": null,
- "lastName": null,
- "phoneNumber": null,
- "locales": [
- "es"
], - "postalCode": null,
- "country": null,
- "notes": null
}, - "ticket": {
- "redemptionMethod": "DIGITAL",
- "utcRedeemedAt": null,
- "deliveryOptions": [
]
}
}
], - "pricing": null
}
]Create a booking that reserves the availability while you collect payment and contact information from the customer. The booking will remain with status ON_HOLD until the booking is confirmed or the reservation hold expires.
| priceDistributionModel | string Default: "PUBLIC" Possible values are PUBLIC, or RESTRICTED. Defaults to PUBLIC if not specified. |
| uuid | string |
| productId | string |
| optionId | string |
| availabilityId | string |
| notes | string |
| expirationMinutes | integer <int32> |
Array of objects | |
| priceDistributionModel | string |
{- "uuid": "095be615-a8ad-4c33-8e9c-c7612fbf6c9f",
- "productId": "b1f2c109-5c67-3c67-927b-2152a0d55f81",
- "optionId": "cf613291-3777-401f-8d2b-dad9259501a2",
- "availabilityId": "2025-07-10T00:00:00Z~5",
- "notes": "Optional notes for the booking",
- "expirationMinutes": 30,
- "unitItems": [
- {
- "unitId": "cf613291-3777-401f-8d2b-dad9259501a2"
}
], - "priceDistributionModel": "PUBLIC"
}{- "id": "3afbaa05-c65b-4492-af39-43c863270435",
- "uuid": "3afbaa05-c65b-4492-af39-43c863270435",
- "supplierReference": "0201055476",
- "resellerReference": "pao-regression-p34",
- "testMode": true,
- "status": "CREATED",
- "utcCreatedAt": "2025-08-11T15:47:22Z",
- "utcUpdatedAt": "2025-08-11T15:47:22Z",
- "utcExpiresAt": "2026-08-12T05:00:00Z",
- "redeemedAt": null,
- "utcConfirmedAt": null,
- "productId": "9badb9eb-859b-37b6-9546-29f3a253d5f4",
- "product": {
- "id": "9badb9eb-859b-37b6-9546-29f3a253d5f4",
- "internalName": "Chicago Explorer Pass",
- "reference": "CHI Go C Df",
- "locale": "en",
- "timeZone": "America/Chicago",
- "allowFreesale": true,
- "instantConfirmation": true,
- "instantDelivery": true,
- "availabilityRequired": true,
- "destinationId": "b083eec7-4310-4c38-8761-b3a323553336",
- "destinationName": "Chicago",
- "brand": "Go City",
- "durationType": "CHOICE",
- "variant": "Default",
- "availabilityType": "OPENING_HOURS",
- "deliveryFormats": [
- "HTML_URL",
- "PDF_URL"
], - "deliveryMethods": [
- "TICKET",
- "VOUCHER"
], - "redemptionMethod": "DIGITAL",
- "options": [
- {
- "id": "a91cb3bc-08a9-3414-a876-67507b035f9a",
- "default": false,
- "internalName": "Chicago Explorer Pass 6-Choice",
- "reference": "CHI Go 6C Df Ps",
- "durationValue": 6,
- "optionType": "PASS",
- "availabilityLocalStartTimes": [ ],
- "cancellationCutoff": "365 days",
- "cancellationCutoffAmount": -365,
- "cancellationCutoffUnit": "day",
- "requiredContactFields": [
- "emailAddress"
], - "restrictions": {
- "minUnits": 0,
- "maxUnits": 50
}, - "units": [
- {
- "id": "7ee0b2cf-3c76-430c-9aa3-1ded205e86a2",
- "internalName": "Chicago Explorer Pass 6-Choice Child",
- "reference": "Ch",
- "type": "CHILD",
- "requiredContactFields": [ ],
- "restrictions": {
- "minAge": 3,
- "maxAge": 12,
- "idRequired": false,
- "minQuantity": 0,
- "maxQuantity": 50,
- "paxCount": 1,
- "accompaniedBy": [ ]
}, - "pricingFrom": null,
- "pricing": null
}, - {
- "id": "8a435677-1413-4012-8f5e-18eb15f54985",
- "internalName": "Chicago Explorer Pass 6-Choice Adult",
- "reference": "Ad",
- "type": "ADULT",
- "requiredContactFields": [ ],
- "restrictions": {
- "minAge": 13,
- "maxAge": 0,
- "idRequired": false,
- "minQuantity": 0,
- "maxQuantity": 50,
- "paxCount": 1,
- "accompaniedBy": [ ]
}, - "pricingFrom": null,
- "pricing": null
}
], - "pricingFrom": null,
- "pricing": null
}
], - "defaultCurrency": null,
- "availableCurrencies": null,
- "pricingPer": null
}, - "optionId": "a91cb3bc-08a9-3414-a876-67507b035f9a",
- "option": {
- "id": "a91cb3bc-08a9-3414-a876-67507b035f9a",
- "default": false,
- "internalName": "Chicago Explorer Pass 6-Choice",
- "reference": "CHI Go 6C Df Ps",
- "durationValue": 6,
- "optionType": "PASS",
- "availabilityLocalStartTimes": [ ],
- "cancellationCutoff": "365 days",
- "cancellationCutoffAmount": -365,
- "cancellationCutoffUnit": "day",
- "requiredContactFields": [
- "emailAddress"
], - "restrictions": {
- "minUnits": 0,
- "maxUnits": 50
}, - "units": [
- {
- "id": "7ee0b2cf-3c76-430c-9aa3-1ded205e86a2",
- "internalName": "Chicago Explorer Pass 6-Choice Child",
- "reference": "Ch",
- "type": "CHILD",
- "requiredContactFields": [ ],
- "restrictions": {
- "minAge": 3,
- "maxAge": 12,
- "idRequired": false,
- "minQuantity": 0,
- "maxQuantity": 50,
- "paxCount": 1,
- "accompaniedBy": [ ]
}, - "pricingFrom": null,
- "pricing": null
}, - {
- "id": "8a435677-1413-4012-8f5e-18eb15f54985",
- "internalName": "Chicago Explorer Pass 6-Choice Adult",
- "reference": "Ad",
- "type": "ADULT",
- "requiredContactFields": [ ],
- "restrictions": {
- "minAge": 13,
- "maxAge": 0,
- "idRequired": false,
- "minQuantity": 0,
- "maxQuantity": 50,
- "paxCount": 1,
- "accompaniedBy": [ ]
}, - "pricingFrom": null,
- "pricing": null
}
], - "pricingFrom": null,
- "pricing": null
}, - "cancellable": true,
- "cancellation": null,
- "freesale": false,
- "availabilityId": "2025-08-07T00:00:00Z",
- "availability": {
- "id": "2025-08-07T00:00:00Z",
- "localDateTimeStart": "2025-08-07T00:00:00Z",
- "localDateTimeEnd": "2025-08-08T00:00:00Z",
- "allDay": true,
- "available": true,
- "status": "FREESALE",
- "vacancies": null,
- "capacity": 10000,
- "maxUnits": 50,
- "utcCutoffAt": "2025-08-07T23:59:59Z",
- "openingHours": [
- {
- "from": "00:00",
- "to": "23:59"
}
], - "unitPricing": null,
- "pricing": null
}, - "contact": {
- "fullName": null,
- "firstName": null,
- "lastName": null,
- "phoneNumber": null,
- "locales": [
- "es"
], - "postalCode": null,
- "country": null,
- "notes": null
}, - "notes": null,
- "deliveryMethods": [
- "TICKET",
- "VOUCHER"
], - "voucher": {
- "redemptionMethod": "DIGITAL",
- "utcRedeemedAt": null,
- "deliveryOptions": [
]
}, - "unitItems": [
- {
- "uuid": "41c27694-f546-44cd-9fb4-2951f8c800f7",
- "supplierReference": "700232431000",
- "resellerReference": "pao-regression-p34",
- "unitId": "8a435677-1413-4012-8f5e-18eb15f54985",
- "unit": {
- "id": "8a435677-1413-4012-8f5e-18eb15f54985",
- "internalName": "Chicago Explorer Pass 6-Choice Adult",
- "reference": "Ad",
- "type": "ADULT",
- "requiredContactFields": [ ],
- "restrictions": {
- "minAge": 13,
- "maxAge": 0,
- "idRequired": false,
- "minQuantity": 0,
- "maxQuantity": 50,
- "paxCount": 1,
- "accompaniedBy": [ ]
}, - "pricingFrom": null,
- "pricing": null
}, - "status": "CREATED",
- "utcRedeemedAt": null,
- "contact": {
- "fullName": null,
- "firstName": null,
- "lastName": null,
- "phoneNumber": null,
- "locales": [
- "es"
], - "postalCode": null,
- "country": null,
- "notes": null
}, - "ticket": {
- "redemptionMethod": "DIGITAL",
- "utcRedeemedAt": null,
- "deliveryOptions": [
]
}
}, - {
- "uuid": "7fa7be2d-b36e-4b5c-aee7-dc201b94b4b1",
- "supplierReference": "700232431001",
- "resellerReference": "pao-regression-p34",
- "unitId": "8a435677-1413-4012-8f5e-18eb15f54985",
- "unit": {
- "id": "8a435677-1413-4012-8f5e-18eb15f54985",
- "internalName": "Chicago Explorer Pass 6-Choice Adult",
- "reference": "Ad",
- "type": "ADULT",
- "requiredContactFields": [ ],
- "restrictions": {
- "minAge": 13,
- "maxAge": 0,
- "idRequired": false,
- "minQuantity": 0,
- "maxQuantity": 50,
- "paxCount": 1,
- "accompaniedBy": [ ]
}, - "pricingFrom": null,
- "pricing": null
}, - "status": "CREATED",
- "utcRedeemedAt": null,
- "contact": {
- "fullName": null,
- "firstName": null,
- "lastName": null,
- "phoneNumber": null,
- "locales": [
- "es"
], - "postalCode": null,
- "country": null,
- "notes": null
}, - "ticket": {
- "redemptionMethod": "DIGITAL",
- "utcRedeemedAt": null,
- "deliveryOptions": [
]
}
}, - {
- "uuid": "43635136-c873-48f9-a0e5-a874a6c8b343",
- "supplierReference": "700232432002",
- "resellerReference": "pao-regression-p34",
- "unitId": "7ee0b2cf-3c76-430c-9aa3-1ded205e86a2",
- "unit": {
- "id": "7ee0b2cf-3c76-430c-9aa3-1ded205e86a2",
- "internalName": "Chicago Explorer Pass 6-Choice Child",
- "reference": "Ch",
- "type": "CHILD",
- "requiredContactFields": [ ],
- "restrictions": {
- "minAge": 3,
- "maxAge": 12,
- "idRequired": false,
- "minQuantity": 0,
- "maxQuantity": 50,
- "paxCount": 1,
- "accompaniedBy": [ ]
}, - "pricingFrom": null,
- "pricing": null
}, - "status": "CREATED",
- "utcRedeemedAt": null,
- "contact": {
- "fullName": null,
- "firstName": null,
- "lastName": null,
- "phoneNumber": null,
- "locales": [
- "es"
], - "postalCode": null,
- "country": null,
- "notes": null
}, - "ticket": {
- "redemptionMethod": "DIGITAL",
- "utcRedeemedAt": null,
- "deliveryOptions": [
]
}
}
], - "pricing": null
}This endpoint confirms the booking so it's ready to be used.
| id required | string The UUID of the booking |
| priceDistributionModel | string Default: "PUBLIC" Possible values are PUBLIC, or RESTRICTED. Defaults to PUBLIC if not specified. |
| resellerReference | string |
object |
{- "resellerReference": "octotest8",
- "contact": {
- "fullName": "Test User",
- "phoneNumber": "+4412345678",
- "locales": [
- "en-GB",
- "en-US",
- "en"
], - "country": "GB"
}
}{- "id": "3afbaa05-c65b-4492-af39-43c863270435",
- "uuid": "3afbaa05-c65b-4492-af39-43c863270435",
- "supplierReference": "0201055476",
- "resellerReference": "pao-regression-p34",
- "testMode": true,
- "status": "CONFIRMED",
- "utcCreatedAt": "2025-08-11T15:47:22Z",
- "utcUpdatedAt": "2025-08-11T15:47:22Z",
- "utcExpiresAt": "2026-08-12T05:00:00Z",
- "redeemedAt": null,
- "utcConfirmedAt": "2025-08-11T15:47:22Z",
- "productId": "9badb9eb-859b-37b6-9546-29f3a253d5f4",
- "product": {
- "id": "9badb9eb-859b-37b6-9546-29f3a253d5f4",
- "internalName": "Chicago Explorer Pass",
- "reference": "CHI Go C Df",
- "locale": "en",
- "timeZone": "America/Chicago",
- "allowFreesale": true,
- "instantConfirmation": true,
- "instantDelivery": true,
- "availabilityRequired": true,
- "destinationId": "b083eec7-4310-4c38-8761-b3a323553336",
- "destinationName": "Chicago",
- "brand": "Go City",
- "durationType": "CHOICE",
- "variant": "Default",
- "availabilityType": "OPENING_HOURS",
- "deliveryFormats": [
- "HTML_URL",
- "PDF_URL"
], - "deliveryMethods": [
- "TICKET",
- "VOUCHER"
], - "redemptionMethod": "DIGITAL",
- "options": [
- {
- "id": "a91cb3bc-08a9-3414-a876-67507b035f9a",
- "default": false,
- "internalName": "Chicago Explorer Pass 6-Choice",
- "reference": "CHI Go 6C Df Ps",
- "durationValue": 6,
- "optionType": "PASS",
- "availabilityLocalStartTimes": [ ],
- "cancellationCutoff": "365 days",
- "cancellationCutoffAmount": -365,
- "cancellationCutoffUnit": "day",
- "requiredContactFields": [
- "emailAddress"
], - "restrictions": {
- "minUnits": 0,
- "maxUnits": 50
}, - "units": [
- {
- "id": "7ee0b2cf-3c76-430c-9aa3-1ded205e86a2",
- "internalName": "Chicago Explorer Pass 6-Choice Child",
- "reference": "Ch",
- "type": "CHILD",
- "requiredContactFields": [ ],
- "restrictions": {
- "minAge": 3,
- "maxAge": 12,
- "idRequired": false,
- "minQuantity": 0,
- "maxQuantity": 50,
- "paxCount": 1,
- "accompaniedBy": [ ]
}, - "pricingFrom": null,
- "pricing": null
}, - {
- "id": "8a435677-1413-4012-8f5e-18eb15f54985",
- "internalName": "Chicago Explorer Pass 6-Choice Adult",
- "reference": "Ad",
- "type": "ADULT",
- "requiredContactFields": [ ],
- "restrictions": {
- "minAge": 13,
- "maxAge": 0,
- "idRequired": false,
- "minQuantity": 0,
- "maxQuantity": 50,
- "paxCount": 1,
- "accompaniedBy": [ ]
}, - "pricingFrom": null,
- "pricing": null
}
], - "pricingFrom": null,
- "pricing": null
}
], - "defaultCurrency": null,
- "availableCurrencies": null,
- "pricingPer": null
}, - "optionId": "a91cb3bc-08a9-3414-a876-67507b035f9a",
- "option": {
- "id": "a91cb3bc-08a9-3414-a876-67507b035f9a",
- "default": false,
- "internalName": "Chicago Explorer Pass 6-Choice",
- "reference": "CHI Go 6C Df Ps",
- "durationValue": 6,
- "optionType": "PASS",
- "availabilityLocalStartTimes": [ ],
- "cancellationCutoff": "365 days",
- "cancellationCutoffAmount": -365,
- "cancellationCutoffUnit": "day",
- "requiredContactFields": [
- "emailAddress"
], - "restrictions": {
- "minUnits": 0,
- "maxUnits": 50
}, - "units": [
- {
- "id": "7ee0b2cf-3c76-430c-9aa3-1ded205e86a2",
- "internalName": "Chicago Explorer Pass 6-Choice Child",
- "reference": "Ch",
- "type": "CHILD",
- "requiredContactFields": [ ],
- "restrictions": {
- "minAge": 3,
- "maxAge": 12,
- "idRequired": false,
- "minQuantity": 0,
- "maxQuantity": 50,
- "paxCount": 1,
- "accompaniedBy": [ ]
}, - "pricingFrom": null,
- "pricing": null
}, - {
- "id": "8a435677-1413-4012-8f5e-18eb15f54985",
- "internalName": "Chicago Explorer Pass 6-Choice Adult",
- "reference": "Ad",
- "type": "ADULT",
- "requiredContactFields": [ ],
- "restrictions": {
- "minAge": 13,
- "maxAge": 0,
- "idRequired": false,
- "minQuantity": 0,
- "maxQuantity": 50,
- "paxCount": 1,
- "accompaniedBy": [ ]
}, - "pricingFrom": null,
- "pricing": null
}
], - "pricingFrom": null,
- "pricing": null
}, - "cancellable": true,
- "cancellation": null,
- "freesale": false,
- "availabilityId": "2025-08-07T00:00:00Z",
- "availability": {
- "id": "2025-08-07T00:00:00Z",
- "localDateTimeStart": "2025-08-07T00:00:00Z",
- "localDateTimeEnd": "2025-08-08T00:00:00Z",
- "allDay": true,
- "available": true,
- "status": "FREESALE",
- "vacancies": null,
- "capacity": 10000,
- "maxUnits": 50,
- "utcCutoffAt": "2025-08-07T23:59:59Z",
- "openingHours": [
- {
- "from": "00:00",
- "to": "23:59"
}
], - "unitPricing": null,
- "pricing": null
}, - "contact": {
- "fullName": null,
- "firstName": null,
- "lastName": null,
- "phoneNumber": null,
- "locales": [
- "es"
], - "postalCode": null,
- "country": null,
- "notes": null
}, - "notes": null,
- "deliveryMethods": [
- "TICKET",
- "VOUCHER"
], - "voucher": {
- "redemptionMethod": "DIGITAL",
- "utcRedeemedAt": null,
- "deliveryOptions": [
]
}, - "unitItems": [
- {
- "uuid": "41c27694-f546-44cd-9fb4-2951f8c800f7",
- "supplierReference": "700232431000",
- "resellerReference": "pao-regression-p34",
- "unitId": "8a435677-1413-4012-8f5e-18eb15f54985",
- "unit": {
- "id": "8a435677-1413-4012-8f5e-18eb15f54985",
- "internalName": "Chicago Explorer Pass 6-Choice Adult",
- "reference": "Ad",
- "type": "ADULT",
- "requiredContactFields": [ ],
- "restrictions": {
- "minAge": 13,
- "maxAge": 0,
- "idRequired": false,
- "minQuantity": 0,
- "maxQuantity": 50,
- "paxCount": 1,
- "accompaniedBy": [ ]
}, - "pricingFrom": null,
- "pricing": null
}, - "status": "CONFIRMED",
- "utcRedeemedAt": null,
- "contact": {
- "fullName": null,
- "firstName": null,
- "lastName": null,
- "phoneNumber": null,
- "locales": [
- "es"
], - "postalCode": null,
- "country": null,
- "notes": null
}, - "ticket": {
- "redemptionMethod": "DIGITAL",
- "utcRedeemedAt": null,
- "deliveryOptions": [
]
}
}, - {
- "uuid": "7fa7be2d-b36e-4b5c-aee7-dc201b94b4b1",
- "supplierReference": "700232431001",
- "resellerReference": "pao-regression-p34",
- "unitId": "8a435677-1413-4012-8f5e-18eb15f54985",
- "unit": {
- "id": "8a435677-1413-4012-8f5e-18eb15f54985",
- "internalName": "Chicago Explorer Pass 6-Choice Adult",
- "reference": "Ad",
- "type": "ADULT",
- "requiredContactFields": [ ],
- "restrictions": {
- "minAge": 13,
- "maxAge": 0,
- "idRequired": false,
- "minQuantity": 0,
- "maxQuantity": 50,
- "paxCount": 1,
- "accompaniedBy": [ ]
}, - "pricingFrom": null,
- "pricing": null
}, - "status": "CONFIRMED",
- "utcRedeemedAt": null,
- "contact": {
- "fullName": null,
- "firstName": null,
- "lastName": null,
- "phoneNumber": null,
- "locales": [
- "es"
], - "postalCode": null,
- "country": null,
- "notes": null
}, - "ticket": {
- "redemptionMethod": "DIGITAL",
- "utcRedeemedAt": null,
- "deliveryOptions": [
]
}
}, - {
- "uuid": "43635136-c873-48f9-a0e5-a874a6c8b343",
- "supplierReference": "700232432002",
- "resellerReference": "pao-regression-p34",
- "unitId": "7ee0b2cf-3c76-430c-9aa3-1ded205e86a2",
- "unit": {
- "id": "7ee0b2cf-3c76-430c-9aa3-1ded205e86a2",
- "internalName": "Chicago Explorer Pass 6-Choice Child",
- "reference": "Ch",
- "type": "CHILD",
- "requiredContactFields": [ ],
- "restrictions": {
- "minAge": 3,
- "maxAge": 12,
- "idRequired": false,
- "minQuantity": 0,
- "maxQuantity": 50,
- "paxCount": 1,
- "accompaniedBy": [ ]
}, - "pricingFrom": null,
- "pricing": null
}, - "status": "CONFIRMED",
- "utcRedeemedAt": null,
- "contact": {
- "fullName": null,
- "firstName": null,
- "lastName": null,
- "phoneNumber": null,
- "locales": [
- "es"
], - "postalCode": null,
- "country": null,
- "notes": null
}, - "ticket": {
- "redemptionMethod": "DIGITAL",
- "utcRedeemedAt": null,
- "deliveryOptions": [
]
}
}
], - "pricing": null
}A booking can only be cancelled if booking.cancellable is TRUE, and it is within the booking cancellation cut-off window.
| id required | string The UUID of the booking |
| force | boolean |
| reason | string |
{- "force": true,
- "reason": "Customer Requested"
}{- "id": "3afbaa05-c65b-4492-af39-43c863270435",
- "uuid": "3afbaa05-c65b-4492-af39-43c863270435",
- "supplierReference": "0201055476",
- "resellerReference": "pao-regression-p34",
- "testMode": true,
- "status": "CANCELLED",
- "utcCreatedAt": "2025-08-11T15:47:22Z",
- "utcUpdatedAt": "2025-08-11T15:47:57Z",
- "utcExpiresAt": "2026-08-12T05:00:00Z",
- "redeemedAt": null,
- "utcConfirmedAt": "2025-08-11T15:47:22Z",
- "productId": "9badb9eb-859b-37b6-9546-29f3a253d5f4",
- "product": {
- "id": "9badb9eb-859b-37b6-9546-29f3a253d5f4",
- "internalName": "Chicago Explorer Pass",
- "reference": "CHI Go C Df",
- "locale": "en",
- "timeZone": "America/Chicago",
- "allowFreesale": true,
- "instantConfirmation": true,
- "instantDelivery": true,
- "availabilityRequired": true,
- "destinationId": "b083eec7-4310-4c38-8761-b3a323553336",
- "destinationName": "Chicago",
- "brand": "Go City",
- "durationType": "CHOICE",
- "variant": "Default",
- "availabilityType": "OPENING_HOURS",
- "deliveryFormats": [
- "HTML_URL",
- "PDF_URL"
], - "deliveryMethods": [
- "TICKET",
- "VOUCHER"
], - "redemptionMethod": "DIGITAL",
- "options": [
- {
- "id": "a91cb3bc-08a9-3414-a876-67507b035f9a",
- "default": false,
- "internalName": "Chicago Explorer Pass 6-Choice",
- "reference": "CHI Go 6C Df Ps",
- "durationValue": 6,
- "optionType": "PASS",
- "availabilityLocalStartTimes": [ ],
- "cancellationCutoff": "365 days",
- "cancellationCutoffAmount": -365,
- "cancellationCutoffUnit": "day",
- "requiredContactFields": [
- "emailAddress"
], - "restrictions": {
- "minUnits": 0,
- "maxUnits": 50
}, - "units": [
- {
- "id": "7ee0b2cf-3c76-430c-9aa3-1ded205e86a2",
- "internalName": "Chicago Explorer Pass 6-Choice Child",
- "reference": "Ch",
- "type": "CHILD",
- "requiredContactFields": [ ],
- "restrictions": {
- "minAge": 3,
- "maxAge": 12,
- "idRequired": false,
- "minQuantity": 0,
- "maxQuantity": 50,
- "paxCount": 1,
- "accompaniedBy": [ ]
}, - "pricingFrom": null,
- "pricing": null
}, - {
- "id": "8a435677-1413-4012-8f5e-18eb15f54985",
- "internalName": "Chicago Explorer Pass 6-Choice Adult",
- "reference": "Ad",
- "type": "ADULT",
- "requiredContactFields": [ ],
- "restrictions": {
- "minAge": 13,
- "maxAge": 0,
- "idRequired": false,
- "minQuantity": 0,
- "maxQuantity": 50,
- "paxCount": 1,
- "accompaniedBy": [ ]
}, - "pricingFrom": null,
- "pricing": null
}
], - "pricingFrom": null,
- "pricing": null
}
], - "defaultCurrency": null,
- "availableCurrencies": null,
- "pricingPer": null
}, - "optionId": "a91cb3bc-08a9-3414-a876-67507b035f9a",
- "option": {
- "id": "a91cb3bc-08a9-3414-a876-67507b035f9a",
- "default": false,
- "internalName": "Chicago Explorer Pass 6-Choice",
- "reference": "CHI Go 6C Df Ps",
- "durationValue": 6,
- "optionType": "PASS",
- "availabilityLocalStartTimes": [ ],
- "cancellationCutoff": "365 days",
- "cancellationCutoffAmount": -365,
- "cancellationCutoffUnit": "day",
- "requiredContactFields": [
- "emailAddress"
], - "restrictions": {
- "minUnits": 0,
- "maxUnits": 50
}, - "units": [
- {
- "id": "7ee0b2cf-3c76-430c-9aa3-1ded205e86a2",
- "internalName": "Chicago Explorer Pass 6-Choice Child",
- "reference": "Ch",
- "type": "CHILD",
- "requiredContactFields": [ ],
- "restrictions": {
- "minAge": 3,
- "maxAge": 12,
- "idRequired": false,
- "minQuantity": 0,
- "maxQuantity": 50,
- "paxCount": 1,
- "accompaniedBy": [ ]
}, - "pricingFrom": null,
- "pricing": null
}, - {
- "id": "8a435677-1413-4012-8f5e-18eb15f54985",
- "internalName": "Chicago Explorer Pass 6-Choice Adult",
- "reference": "Ad",
- "type": "ADULT",
- "requiredContactFields": [ ],
- "restrictions": {
- "minAge": 13,
- "maxAge": 0,
- "idRequired": false,
- "minQuantity": 0,
- "maxQuantity": 50,
- "paxCount": 1,
- "accompaniedBy": [ ]
}, - "pricingFrom": null,
- "pricing": null
}
], - "pricingFrom": null,
- "pricing": null
}, - "cancellable": false,
- "cancellation": {
- "refund": "FULL",
- "reason": "No Reason Given",
- "utcCancelledAt": "2025-08-11T15:47:57Z"
}, - "freesale": false,
- "availabilityId": "2025-08-07T00:00:00Z",
- "availability": {
- "id": "2025-08-07T00:00:00Z",
- "localDateTimeStart": "2025-08-07T00:00:00Z",
- "localDateTimeEnd": "2025-08-08T00:00:00Z",
- "allDay": true,
- "available": true,
- "status": "FREESALE",
- "vacancies": null,
- "capacity": 10000,
- "maxUnits": 50,
- "utcCutoffAt": "2025-08-07T23:59:59Z",
- "openingHours": [
- {
- "from": "00:00",
- "to": "23:59"
}
], - "unitPricing": null,
- "pricing": null
}, - "contact": {
- "fullName": null,
- "firstName": null,
- "lastName": null,
- "phoneNumber": null,
- "locales": [
- "es"
], - "postalCode": null,
- "country": null,
- "notes": null
}, - "notes": null,
- "deliveryMethods": [
- "TICKET",
- "VOUCHER"
], - "voucher": {
- "redemptionMethod": "DIGITAL",
- "utcRedeemedAt": null,
- "deliveryOptions": [
- {
- "deliveryFormat": "HTML_URL",
- "deliveryValue": ""
}, - {
- "deliveryFormat": "PDF_URL",
- "deliveryValue": ""
}
]
}, - "unitItems": [
- {
- "uuid": "41c27694-f546-44cd-9fb4-2951f8c800f7",
- "supplierReference": "700232431000",
- "resellerReference": "pao-regression-p34",
- "unitId": "8a435677-1413-4012-8f5e-18eb15f54985",
- "unit": {
- "id": "8a435677-1413-4012-8f5e-18eb15f54985",
- "internalName": "Chicago Explorer Pass 6-Choice Adult",
- "reference": "Ad",
- "type": "ADULT",
- "requiredContactFields": [ ],
- "restrictions": {
- "minAge": 13,
- "maxAge": 0,
- "idRequired": false,
- "minQuantity": 0,
- "maxQuantity": 50,
- "paxCount": 1,
- "accompaniedBy": [ ]
}, - "pricingFrom": null,
- "pricing": null
}, - "status": "CANCELLED",
- "utcRedeemedAt": null,
- "contact": {
- "fullName": null,
- "firstName": null,
- "lastName": null,
- "phoneNumber": null,
- "locales": [
- "es"
], - "postalCode": null,
- "country": null,
- "notes": null
}, - "ticket": {
- "redemptionMethod": "DIGITAL",
- "utcRedeemedAt": null,
- "deliveryOptions": [
- {
- "deliveryFormat": "HTML_URL",
- "deliveryValue": ""
}, - {
- "deliveryFormat": "PDF_URL",
- "deliveryValue": ""
}
]
}
}, - {
- "uuid": "7fa7be2d-b36e-4b5c-aee7-dc201b94b4b1",
- "supplierReference": "700232431001",
- "resellerReference": "pao-regression-p34",
- "unitId": "8a435677-1413-4012-8f5e-18eb15f54985",
- "unit": {
- "id": "8a435677-1413-4012-8f5e-18eb15f54985",
- "internalName": "Chicago Explorer Pass 6-Choice Adult",
- "reference": "Ad",
- "type": "ADULT",
- "requiredContactFields": [ ],
- "restrictions": {
- "minAge": 13,
- "maxAge": 0,
- "idRequired": false,
- "minQuantity": 0,
- "maxQuantity": 50,
- "paxCount": 1,
- "accompaniedBy": [ ]
}, - "pricingFrom": null,
- "pricing": null
}, - "status": "CANCELLED",
- "utcRedeemedAt": null,
- "contact": {
- "fullName": null,
- "firstName": null,
- "lastName": null,
- "phoneNumber": null,
- "locales": [
- "es"
], - "postalCode": null,
- "country": null,
- "notes": null
}, - "ticket": {
- "redemptionMethod": "DIGITAL",
- "utcRedeemedAt": null,
- "deliveryOptions": [
- {
- "deliveryFormat": "HTML_URL",
- "deliveryValue": ""
}, - {
- "deliveryFormat": "PDF_URL",
- "deliveryValue": ""
}
]
}
}, - {
- "uuid": "43635136-c873-48f9-a0e5-a874a6c8b343",
- "supplierReference": "700232432002",
- "resellerReference": "pao-regression-p34",
- "unitId": "7ee0b2cf-3c76-430c-9aa3-1ded205e86a2",
- "unit": {
- "id": "7ee0b2cf-3c76-430c-9aa3-1ded205e86a2",
- "internalName": "Chicago Explorer Pass 6-Choice Child",
- "reference": "Ch",
- "type": "CHILD",
- "requiredContactFields": [ ],
- "restrictions": {
- "minAge": 3,
- "maxAge": 12,
- "idRequired": false,
- "minQuantity": 0,
- "maxQuantity": 50,
- "paxCount": 1,
- "accompaniedBy": [ ]
}, - "pricingFrom": null,
- "pricing": null
}, - "status": "CANCELLED",
- "utcRedeemedAt": null,
- "contact": {
- "fullName": null,
- "firstName": null,
- "lastName": null,
- "phoneNumber": null,
- "locales": [
- "es"
], - "postalCode": null,
- "country": null,
- "notes": null
}, - "ticket": {
- "redemptionMethod": "DIGITAL",
- "utcRedeemedAt": null,
- "deliveryOptions": [
- {
- "deliveryFormat": "HTML_URL",
- "deliveryValue": ""
}, - {
- "deliveryFormat": "PDF_URL",
- "deliveryValue": ""
}
]
}
}
], - "pricing": null
}Fetch the status of an existing booking.
| id required | string The UUID of the booking |
{- "id": "3afbaa05-c65b-4492-af39-43c863270435",
- "uuid": "3afbaa05-c65b-4492-af39-43c863270435",
- "supplierReference": "0201055476",
- "resellerReference": "pao-regression-p34",
- "testMode": true,
- "status": "CONFIRMED",
- "utcCreatedAt": "2025-08-11T15:47:22Z",
- "utcUpdatedAt": "2025-08-11T15:47:22Z",
- "utcExpiresAt": "2026-08-12T05:00:00Z",
- "redeemedAt": null,
- "utcConfirmedAt": "2025-08-11T15:47:22Z",
- "productId": "9badb9eb-859b-37b6-9546-29f3a253d5f4",
- "product": {
- "id": "9badb9eb-859b-37b6-9546-29f3a253d5f4",
- "internalName": "Chicago Explorer Pass",
- "reference": "CHI Go C Df",
- "locale": "en",
- "timeZone": "America/Chicago",
- "allowFreesale": true,
- "instantConfirmation": true,
- "instantDelivery": true,
- "availabilityRequired": true,
- "destinationId": "b083eec7-4310-4c38-8761-b3a323553336",
- "destinationName": "Chicago",
- "brand": "Go City",
- "durationType": "CHOICE",
- "variant": "Default",
- "availabilityType": "OPENING_HOURS",
- "deliveryFormats": [
- "HTML_URL",
- "PDF_URL"
], - "deliveryMethods": [
- "TICKET",
- "VOUCHER"
], - "redemptionMethod": "DIGITAL",
- "options": [
- {
- "id": "a91cb3bc-08a9-3414-a876-67507b035f9a",
- "default": false,
- "internalName": "Chicago Explorer Pass 6-Choice",
- "reference": "CHI Go 6C Df Ps",
- "durationValue": 6,
- "optionType": "PASS",
- "availabilityLocalStartTimes": [ ],
- "cancellationCutoff": "365 days",
- "cancellationCutoffAmount": -365,
- "cancellationCutoffUnit": "day",
- "requiredContactFields": [
- "emailAddress"
], - "restrictions": {
- "minUnits": 0,
- "maxUnits": 50
}, - "units": [
- {
- "id": "7ee0b2cf-3c76-430c-9aa3-1ded205e86a2",
- "internalName": "Chicago Explorer Pass 6-Choice Child",
- "reference": "Ch",
- "type": "CHILD",
- "requiredContactFields": [ ],
- "restrictions": {
- "minAge": 3,
- "maxAge": 12,
- "idRequired": false,
- "minQuantity": 0,
- "maxQuantity": 50,
- "paxCount": 1,
- "accompaniedBy": [ ]
}, - "pricingFrom": null,
- "pricing": null
}, - {
- "id": "8a435677-1413-4012-8f5e-18eb15f54985",
- "internalName": "Chicago Explorer Pass 6-Choice Adult",
- "reference": "Ad",
- "type": "ADULT",
- "requiredContactFields": [ ],
- "restrictions": {
- "minAge": 13,
- "maxAge": 0,
- "idRequired": false,
- "minQuantity": 0,
- "maxQuantity": 50,
- "paxCount": 1,
- "accompaniedBy": [ ]
}, - "pricingFrom": null,
- "pricing": null
}
], - "pricingFrom": null,
- "pricing": null
}
], - "defaultCurrency": null,
- "availableCurrencies": null,
- "pricingPer": null
}, - "optionId": "a91cb3bc-08a9-3414-a876-67507b035f9a",
- "option": {
- "id": "a91cb3bc-08a9-3414-a876-67507b035f9a",
- "default": false,
- "internalName": "Chicago Explorer Pass 6-Choice",
- "reference": "CHI Go 6C Df Ps",
- "durationValue": 6,
- "optionType": "PASS",
- "availabilityLocalStartTimes": [ ],
- "cancellationCutoff": "365 days",
- "cancellationCutoffAmount": -365,
- "cancellationCutoffUnit": "day",
- "requiredContactFields": [
- "emailAddress"
], - "restrictions": {
- "minUnits": 0,
- "maxUnits": 50
}, - "units": [
- {
- "id": "7ee0b2cf-3c76-430c-9aa3-1ded205e86a2",
- "internalName": "Chicago Explorer Pass 6-Choice Child",
- "reference": "Ch",
- "type": "CHILD",
- "requiredContactFields": [ ],
- "restrictions": {
- "minAge": 3,
- "maxAge": 12,
- "idRequired": false,
- "minQuantity": 0,
- "maxQuantity": 50,
- "paxCount": 1,
- "accompaniedBy": [ ]
}, - "pricingFrom": null,
- "pricing": null
}, - {
- "id": "8a435677-1413-4012-8f5e-18eb15f54985",
- "internalName": "Chicago Explorer Pass 6-Choice Adult",
- "reference": "Ad",
- "type": "ADULT",
- "requiredContactFields": [ ],
- "restrictions": {
- "minAge": 13,
- "maxAge": 0,
- "idRequired": false,
- "minQuantity": 0,
- "maxQuantity": 50,
- "paxCount": 1,
- "accompaniedBy": [ ]
}, - "pricingFrom": null,
- "pricing": null
}
], - "pricingFrom": null,
- "pricing": null
}, - "cancellable": true,
- "cancellation": null,
- "freesale": false,
- "availabilityId": "2025-08-07T00:00:00Z",
- "availability": {
- "id": "2025-08-07T00:00:00Z",
- "localDateTimeStart": "2025-08-07T00:00:00Z",
- "localDateTimeEnd": "2025-08-08T00:00:00Z",
- "allDay": true,
- "available": true,
- "status": "FREESALE",
- "vacancies": null,
- "capacity": 10000,
- "maxUnits": 50,
- "utcCutoffAt": "2025-08-07T23:59:59Z",
- "openingHours": [
- {
- "from": "00:00",
- "to": "23:59"
}
], - "unitPricing": null,
- "pricing": null
}, - "contact": {
- "fullName": null,
- "firstName": null,
- "lastName": null,
- "phoneNumber": null,
- "locales": [
- "es"
], - "postalCode": null,
- "country": null,
- "notes": null
}, - "notes": null,
- "deliveryMethods": [
- "TICKET",
- "VOUCHER"
], - "voucher": {
- "redemptionMethod": "DIGITAL",
- "utcRedeemedAt": null,
- "deliveryOptions": [
]
}, - "unitItems": [
- {
- "uuid": "41c27694-f546-44cd-9fb4-2951f8c800f7",
- "supplierReference": "700232431000",
- "resellerReference": "pao-regression-p34",
- "unitId": "8a435677-1413-4012-8f5e-18eb15f54985",
- "unit": {
- "id": "8a435677-1413-4012-8f5e-18eb15f54985",
- "internalName": "Chicago Explorer Pass 6-Choice Adult",
- "reference": "Ad",
- "type": "ADULT",
- "requiredContactFields": [ ],
- "restrictions": {
- "minAge": 13,
- "maxAge": 0,
- "idRequired": false,
- "minQuantity": 0,
- "maxQuantity": 50,
- "paxCount": 1,
- "accompaniedBy": [ ]
}, - "pricingFrom": null,
- "pricing": null
}, - "status": "CONFIRMED",
- "utcRedeemedAt": null,
- "contact": {
- "fullName": null,
- "firstName": null,
- "lastName": null,
- "phoneNumber": null,
- "locales": [
- "es"
], - "postalCode": null,
- "country": null,
- "notes": null
}, - "ticket": {
- "redemptionMethod": "DIGITAL",
- "utcRedeemedAt": null,
- "deliveryOptions": [
]
}
}, - {
- "uuid": "7fa7be2d-b36e-4b5c-aee7-dc201b94b4b1",
- "supplierReference": "700232431001",
- "resellerReference": "pao-regression-p34",
- "unitId": "8a435677-1413-4012-8f5e-18eb15f54985",
- "unit": {
- "id": "8a435677-1413-4012-8f5e-18eb15f54985",
- "internalName": "Chicago Explorer Pass 6-Choice Adult",
- "reference": "Ad",
- "type": "ADULT",
- "requiredContactFields": [ ],
- "restrictions": {
- "minAge": 13,
- "maxAge": 0,
- "idRequired": false,
- "minQuantity": 0,
- "maxQuantity": 50,
- "paxCount": 1,
- "accompaniedBy": [ ]
}, - "pricingFrom": null,
- "pricing": null
}, - "status": "CONFIRMED",
- "utcRedeemedAt": null,
- "contact": {
- "fullName": null,
- "firstName": null,
- "lastName": null,
- "phoneNumber": null,
- "locales": [
- "es"
], - "postalCode": null,
- "country": null,
- "notes": null
}, - "ticket": {
- "redemptionMethod": "DIGITAL",
- "utcRedeemedAt": null,
- "deliveryOptions": [
]
}
}, - {
- "uuid": "43635136-c873-48f9-a0e5-a874a6c8b343",
- "supplierReference": "700232432002",
- "resellerReference": "pao-regression-p34",
- "unitId": "7ee0b2cf-3c76-430c-9aa3-1ded205e86a2",
- "unit": {
- "id": "7ee0b2cf-3c76-430c-9aa3-1ded205e86a2",
- "internalName": "Chicago Explorer Pass 6-Choice Child",
- "reference": "Ch",
- "type": "CHILD",
- "requiredContactFields": [ ],
- "restrictions": {
- "minAge": 3,
- "maxAge": 12,
- "idRequired": false,
- "minQuantity": 0,
- "maxQuantity": 50,
- "paxCount": 1,
- "accompaniedBy": [ ]
}, - "pricingFrom": null,
- "pricing": null
}, - "status": "CONFIRMED",
- "utcRedeemedAt": null,
- "contact": {
- "fullName": null,
- "firstName": null,
- "lastName": null,
- "phoneNumber": null,
- "locales": [
- "es"
], - "postalCode": null,
- "country": null,
- "notes": null
}, - "ticket": {
- "redemptionMethod": "DIGITAL",
- "utcRedeemedAt": null,
- "deliveryOptions": [
]
}
}
], - "pricing": null
}{- "id": "e7511ae8-11f6-4abf-9fce-a2b573e9aa58",
- "name": "Go City",
}