A collection of endpoints which can be used to search the catalog for relevant activities.
- Update participant info for cart item
Musement API (3.5.0)
For merchant or affiliate partners wishing to use the Musement API.
See the Authentication section for details on how to authenticate with the API.
GET /activities/{activityUuid}/dates/{date}- Added
availability,max_buyandmin_buyproperties to timeslots. For more info, check out our guide
- Added
A partner's application value, used for analyzing API usage and to identify areas of improvement.
The API version to use for the request.
When absent, the latest version is used by default, however the latest version may not be stable. Partners are encouraged to use the latest stable version: 3.4.0.
- Mock serverhttps://partner-api.musement.com/_mock/reference/openapi/carts/{cartUuid}/items/{cartItemUuid}/participants
- Sandbox serverhttps://sandbox.musement.com/api/v3/carts/{cartUuid}/items/{cartItemUuid}/participants
- Production serverhttps://api.musement.com/api/v3/carts/{cartUuid}/items/{cartItemUuid}/participants
- curl
- C#
- Node.js
curl -i -X GET \
'https://partner-api.musement.com/_mock/reference/openapi/carts/{cartUuid}/items/{cartItemUuid}/participants' \
-H 'X-Musement-Application: string' \
-H 'X-Musement-Version: 3.4.0'[ { "date_of_birth": "1985-11-04", "nationality": "Italy" } ]
A partner's application value, used for analyzing API usage and to identify areas of improvement.
The API version to use for the request.
When absent, the latest version is used by default, however the latest version may not be stable. Partners are encouraged to use the latest stable version: 3.4.0.
The exact properties for each participant info in the request vary depending on the cart item requirements.
- Mock serverhttps://partner-api.musement.com/_mock/reference/openapi/carts/{cartUuid}/items/{cartItemUuid}/participants
- Sandbox serverhttps://sandbox.musement.com/api/v3/carts/{cartUuid}/items/{cartItemUuid}/participants
- Production serverhttps://api.musement.com/api/v3/carts/{cartUuid}/items/{cartItemUuid}/participants
- curl
- C#
- Node.js
curl -i -X PUT \
'https://partner-api.musement.com/_mock/reference/openapi/carts/{cartUuid}/items/{cartItemUuid}/participants' \
-H 'Content-Type: application/json' \
-H 'X-Musement-Application: string' \
-H 'X-Musement-Version: 3.4.0' \
-d '[
{
"date_of_birth": "1985-11-04",
"nationality": "Italy"
}
]'[ { "date_of_birth": "1985-11-04", "nationality": "Italy" } ]
Request
Each item in a cart may require info for each participant in a reservation.
The response follows the JSON Schema Specification to describe the info requested for each participant.
The value of this parameter might affect the language of the content in the response, provided a translation in the requested language is available.
A partner's application value, used for analyzing API usage and to identify areas of improvement.
The API version to use for the request.
When absent, the latest version is used by default, however the latest version may not be stable. Partners are encouraged to use the latest stable version: 3.4.0.
- Mock serverhttps://partner-api.musement.com/_mock/reference/openapi/carts/{cartUuid}/items/{cartItemUuid}/participants/schema
- Sandbox serverhttps://sandbox.musement.com/api/v3/carts/{cartUuid}/items/{cartItemUuid}/participants/schema
- Production serverhttps://api.musement.com/api/v3/carts/{cartUuid}/items/{cartItemUuid}/participants/schema
- curl
- C#
- Node.js
curl -i -X GET \
'https://partner-api.musement.com/_mock/reference/openapi/carts/{cartUuid}/items/{cartItemUuid}/participants/schema' \
-H 'Accept-Language: en-US' \
-H 'X-Musement-Application: string' \
-H 'X-Musement-Version: 3.4.0'Participant info schema for cart item
The type of item:
cart_customer_guest: Customer info for cartcart_item_participants_info: Participant info for cart itemform: Extra customer dataparticipant: Participant info
{ "title": "cart_item_participants_info", "type": "object", "properties": { "property1": { … }, "property2": { … }, "participants": { … } }, "required": [ "participants" ] }