Ticket options

Once you have found an available date for an activity, you can check its schedule with the following request:

Copy
Copied
curl -X GET '{baseUrl}/activities/{activityUuid}/dates/{date}' \
-H 'X-Musement-Application: {applicationValue}' \
-H 'X-Musement-Version: 3.4.0' \
-H 'Authorization: Bearer {accessToken}'

The response contains an array of groups:

Copy
Copied
[
	{
		"groups": [
			{
				"feature_code": "fast-track-ticket",
				"name": "Fast-track ticket",
				"default": false,
				"type": "TIME-BASED",
				"slots": [...]
			},
			{
				"feature_code": "fast-track-ticket-with-audio-guide",
				"name": "Fast-track ticket with audio guide",
				"default": false,
				"type": "TIME-BASED",
				"slots": [...]
			}
		]
	}
]
Each group is a unique ticket option, variations of the activity available for purchase. The name property identifies what the option is and can vary depending on the needs of the activity provider. Examples include:
  • 1 day
  • 48-hour pass
  • Ticket with audio guide
  • Tour
  • Tour in German
The name property will change depending on the value of the Accept-Language header.An activity will have one or more ticket options. The options in the endpoint can vary depending on the activity configuration, pickup parameter (if present) and the chosen date.

On musement.com

You can see ticket options in action on musement.com.

After customers select a date in the calendar, they are presented with available ticket options for that date:

Multiple ticket options
Copyright © TUI Musement. All rights reserved.