The first step when making a sale is to check for availability. Note if allowFreesale is set to true on the product then this step is optional but it is advised you check it anyway if you can to check for closures.
Peek Pro has two main availability calls:
POST /availability/calendar this endpoint is highly optimized and will return a single object per day. It's designed to be queried for large date ranges and the result is used to populate an availability calendar.
POST /octo/availability this endpoint is slightly slower as it 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, so if you just want to use this endpoint and skip the calendar endpoint then that's perfectly ok.
The availability calendar can optionally take an array of units if you already know what they are and will automatically show availabilities as sold out if they have insufficient space.
The response will be an array of objects, one for each day between the range given in localDateStart and localDateEnd. Each object is defined as:
Field
Description
localDate
The date (in format YYYY-MM-DD)
status
The status of that date. Possible values are:
AVAILABLE There are availabilities available on this date for sale.
SOLD_OUT This date was available but is now fully sold out.
LIMITED This date is available but has less than 50% capacity left.
CLOSED This date is closed and not available for sale.
available
A boolean value (true or false) indicating whether you're able to sell tickets. This is basically just an alias for: status == 'AVAILABLE' || status == 'LIMITED'
capacity
The total capacity on this day. We cannot give exact vacancies on the calendar endpoint as this endpoint is cached for speed and is only meant to give an indication.
openingHours
A list of opening hours that the product is open on this day.
The availability calendar can optionally take an array of units if you already know what they are and will automatically show availabilities as sold out if they have insufficient space.
The response will be an array of availability objects which are defined below:
Field
Description
id
The availability id, you'll need this when booking
localDateTimeStart
The start time for this availability. This will be in the local time zone to the product.
localDateTimeEnd
The end time for this availability. This will be in the local time zone to the product.
allDay
A boolean field indicating whether this is an all day availability and not a fixed departure time. If this value is true then there will be no other availability object on the same day.
status
The status of that date. Possible values are:
AVAILABLE This availability is available for sale
FREESALE This availability has no capacity and is available.
SOLD_OUT This availability is not
LIMITED This availability is available but has less than 50% capacity left.
Depending on the value of product.availabilityType the response will keep the same structure but will generally look slightly different. We've provided examples of that below:
Products with this availability type are typically Museums, Attractions or Hop on Hop off tours where the guest just picks a date they wish to travel and can show up at any point whilst the product is open.
This is a typical response from a product with OPENING_HOURS availability type:
Notice how vacancies, capacity and max units are all null indicating unlimited, and the allDay flag is set true. You should just render this as a calendar with no further times to chose from once the guest has chosen the date.
Products with this availability type are typically walking tours, day trips and other activities where the guest has to book onto a specific departure time. There may be just one or multiple throughout the day.
This is a typical response from a product with START_TIME availability type:
These are all availabilities for the same day. Once the guest has chosen the date (in this example 2020-07-01 then they must then pick a departure time. Again in this example the departure times would be:
11:00 AM
12:00 PM
2:30 PM
3:00 PM
Unlike the calendar endpoint, the availability check endpoint will not return an availability object if the product is closed. If there are no availabilities for a given date you should just mark it as closed in your interface.