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’.
- The ‘Ticket’ category refers to park tickets in Orlando
- The ‘Tour’ category covers other activities and tickets.
Api Services
| Section | Description |
|---|---|
| Discovery | Returns the inventory of activities available for the specified destination.s |
| Modalities | Provides detailed information about the ticket based on the type of ticket being queried. |
| Availability | Verifies 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
Updated about 1 month ago
Did this page help you?