ACTIVITIES

The objective of this document is to describe the flow of searching and purchasing activities.

The Activities API is divided into two categories: ‘Ticket’ and ‘Tour’.

  1. The ‘Ticket’ category refers to park tickets in Orlando
  2. The ‘Tour’ category covers other activities and tickets.

Api Services

SectionDescription
DiscoveryReturns the inventory of activities available for the specified destination.s
ModalitiesProvides detailed information about the ticket based on the type of ticket being queried.
AvailabilityVerifies the availability and price of the ticket being searched for on a specific date.

Flow

sequenceDiagram
    Actor Partner
    participant Discovery as /Discovery
    participant Modalities as /Modalities
    participant Availability as /Availability
    participant BookingFlow
    	
	Partner->> Discovery: destination + site + language
    Discovery-->> Partner: 'available_tickets'
    Partner->> Modalities: id (tracking_id) + site
    Modalities-->>Partner: ticket/tour details
    Partner->> Availability: id + modality + date + site + language + schedule (tours) 
    Availability-->> Partner: choice_id
    Partner->>BookingFlow: choice_id
    

Did this page help you?