Flavours

Flavours are optional tags which provide additional information about the activity: Entrance tickets, Guided tour, Tour with audio guide, etc.

Flavours are part of the response for the /activities/{activityUuid} endpoint:

Copy
Copied
{
	[...]
	"flavours": [
		{
			"id": 2,
			"name": "Entrance Tickets",
			"active": true,
			"slug": "entrance-tickets"
		}
	]
	[...]
}

It is possible to get the same list by calling the /activities/{activityUuid}/flavours endpoint too.

On musement.com

You can see flavours in action on musement.com.

When searching for activities, a single flavour is listed at the bottom of each activity card. The example below has the "Entrance Tickets" flavour:

flavours

Every flavour

To get a list of all possible flavours in the API, you need to make two API requests and combine the results.

Flavours without a group:

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

Flavours with the tui-commercial-classification group:

Copy
Copied
curl -X GET '{baseUrl}/flavours?group=tui-commercial-classification' \
-H 'X-Musement-Application: {applicationValue}' \
-H 'X-Musement-Version: 3.4.0' \
-H 'Authorization: Bearer {accessToken}'

There are no other flavour groups at this time.

Copyright © TUI Musement. All rights reserved.