Get the information requests configured for an experience.
Information requests describe the additional questions a guest answers during the booking flow. Use them to render the booking form. The answers a guest actually provides are returned by Get information request answers on a booking.
Security
OAuth2(Required scopes: experience.read)
A lowercase ISO 639-1 language code (e.g. "da"), optionally followed by a hyphen and an uppercase ISO 3166-1 country code (e.g. "en-US").
If no value matches what is available in the host's Storefront, an error response is returned.
You can optionally provide multiple language-country pairs with a priority, separated by commas based on content negotiation.
Example:en-GB; q=1.0, en-US; q=0.8
GET
curl -i -X GET \
'https://api.understory.io/v1/experiences/{experienceId}/information-requests?cursor=string&limit=100' \
-H 'Accept-Language: en-GB; q=1.0, en-US; q=0.8' \
-H 'Authorization: Bearer <YOUR_TOKEN_HERE>'Response
{ "next": "string", "items": [ { … } ] }