This is the reference documentation for the Understory API. Here you can find detailed information about the API endpoints, request and response formats, and authentication methods.
For more general information, go to Documentation.
You’re exploring an early preview of the Understory API documentation. Take a look around and see what’s available.
Want to help us test and improve it? Share your feedback by clicking the chat icon in the bottom right. We’d love to hear your thoughts!
https://api.understory.io/
https://api.understory.io/v1/events
curl -i -X GET \
'https://api.understory.io/v1/events?cursor=string&from=2019-08-24T14%3A15%3A22Z&limit=100&to=2019-08-24T14%3A15%3A22Z' \
-H 'Authorization: Bearer <YOUR_TOKEN_HERE>'
OK
The duration of the event, i.e. the time between start and end time.
For example, PT1H45M represents 1 hours and 45 minutes.
The languages spoken during the event.
The capacity of the event.
The cancellation information for the event.
Is only present if the event is CANCELLED
.
{ "next": "string", "items": [ { … } ] }
https://api.understory.io/v1/events/{eventId}
curl -i -X GET \
'https://api.understory.io/v1/events/{eventId}' \
-H 'Authorization: Bearer <YOUR_TOKEN_HERE>'
OK
The duration of the event, i.e. the time between start and end time.
For example, PT1H45M represents 1 hours and 45 minutes.
The languages spoken during the event.
The capacity of the event.
The cancellation information for the event.
Is only present if the event is CANCELLED
.
{ "id": "string", "experience_id": "string", "company_id": "string", "created_at": "2019-08-24T14:15:22Z", "updated_at": "2019-08-24T14:15:22Z", "start_time": "2019-08-24T14:15:22Z", "end_time": "2019-08-24T14:15:22Z", "duration": "PT1H45M", "location_id": "string", "languages": [ [ … ] ], "status": "ACTIVE", "cancellation": { "reason": "string", "cancelled_on": "2019-08-24T14:15:22Z", "cancelled_by": "string" }, "assigned_guides": [ "string" ], "capacity": { "booked": 0, "total": 0, "is_full": true }, "visibility": "PUBLIC", "information": "string" }