Products
Mapping the supplier available products and options to your reseller system.
Most reseller systems have a database of products. You will need to map to products returned in this API call.
The main components that you are required to map are: Product, Options, Units
The product ID, at least one option and units are required for inventory checks and booking calls. These are required for subsequent calls.
List Products
GET
https://api.zaui.io/octo/products/
Provides a list of all available products for resell provided by the supplier.
Response keys:
Field
Description
id
Product ID. You need to save this.
internalName
Product name used by the supplier.
reference
An optional code this supplier might use to identify the product.
locale
A language code indicating what language this product content is in (BCP 47 RFC 5646 RFC 4647 language tag).
timeZone
The IANA TimeZone name this product is located in.
allowFreesale
Whether a booking can be made for this product without having to query availability first.
instantConfirmation
Whether bookings will be immediately confirmed when a sale is made.
availabilityRequired
Whether an availabilityId
is required when creating a booking. Without this, the booking will be open-dated and not have a specified travel date.
availabilityType
What type of availability this product has, possible values are:
START_TIME
if there are fixed departure times which you must pick one. Typical for day tours or activities.
OPENING_HOURS
if you just select a date and can visit any time when the venue is open.
deliveryFormats
An array of formats the API will deliver the tickets as. Possible values are:
QRCODE
A code to be presented as a QR CODE barcode
CODE128
A code to be presented as a CODE 128 barcode
PDF_URL
A URL to a PDF file that contains all the ticket details
deliveryMethods
How the formats described in deliveryFormats
will be delivered in the booking response, possible values are:
TICKET
Individually per unit in the order (i.e. single ticket for each person)
VOUCHER
One ticket for the whole booking
instantDelivery
This indicates whether the Reseller can expect immediate delivery of the customer's tickets. If false
then the Reseller MUST be able to delay delivery of the tickets to the customer.
redemptionMethod
How must the guest present the ticket or voucher when they arrive at the venue. Possible values are:
MANIFEST
The guest name will be written down and they just need to show up
DIGITAL
The tickets/voucher must be scanned but can be on mobile
PRINT
The tickets/voucher must be printed and presented on arrival
options
An array of all options for this product, this list will not be empty.
options[].id
The id that identifies this option and is only unique within the product.
options[].availabilityLocalStartTimes
This will be an array of all possible start times that can be returned during availability. For example an all day attraction may have a single value like ["00:00"]
whilst a tour with multiple departure times may have multiple:["09:00", "14:00", "17:00"]
.
options[].default
If there is only one option this value is true
to indicate it is the default and therefore doesn't need to be displayed.
options[].internalName
Like product internalName
except for each option.
options[].reference
Like product reference
except for each option.
options[].requiredContactFields
An array of the contact fields required to confirm a booking. These just apply to the lead traveller on the booking and not for every ticket.
Required Values: firstName,
lastName
options[].restrictions
An object containing a fixed list of restrictions.
options[].restrictions.minUnits
The minimum number of tickets that can be purchased in a single booking (null = 0)
options[].restrictions.maxUnits
The maximum number of tickets that can be purchased in a single booking (null = unlimited)
options[].cancellationCutoff
This is how long before the tour the booking can be still be cancelled. We also provide booking.cancellable
(boolean) which we recommend you use instead to know if the booking can be cancelled.
options[].cancellationCutOffAmount
An integer representing the cut-off amount.
options[].cancellationCutOffUnit
The cut-off unit. Values: minute
, hour
or day
.
options[].units
The list of ticket types (units) available for sale.
options[].units[].id
The id of the unit that is unique to the option.
options[].units[].internalName
Like product/option internalName
but for units.
options[].units[].reference
Like product/option reference but for units.
options[].units[].type
This is the ticket type of the unit, values are: SENIORS
, ADULTS
, STUDENTS
, CHILDREN
, INFANTS
options[].units[].requiredContactFields
This is the array of the contact information PER ticket that the supplier expects.
Required Values: firstName,
lastName
options[].units[].restrictions
An object containing restrictions about this unit. Possible keys and values are:
options[].units[].restrictions.minAge
An integer indicating the minimum age for the person this unit is for.
options[].units[].restrictions.maxAge
An integer indicating the maximum age for the person this unit is for.
options[].units[].restrictions.idRequired
A Boolean value indicating whether the person this unit is for must show ID on arrival.
options[].units[].restrictions.minQuantity
The minimum quantity of this unit required per booking (null = no minimum)
options[].units[].restrictions.maxQuantity
The maximum quantity of this unit required per booking (null = no limit)
options[].units[].restrictions.paxCount
This is the amount of people each unit counts as (e.g. family == 4pax)
options[].units[].restrictions.accompaniedBy
An array of unit ids one of which must accompany this unit if it is purchased.
Get Product
GET
https://api.zaui.io/octo/products/{id}
This endpoint will respond with a single product object.
Path Parameters
id*
string/uuid
The product ID
Response from this endpoint is the same as GET
/products/
except as a single Product object.
Last updated