Get all bookings.
Security
OAuth2(Required scopes: booking.read)
Return only bookings with one of these statuses. Comma-separate several, e.g. status=MOVED,CANCELLED.
PROCESSING and UNKNOWN cannot be filtered on: the first is a transient checkout state and the second is a defensive default, so neither is a stable thing to select by.
GET
curl -i -X GET \
'https://api.understory.io/v1/bookings?cursor=string&limit=100&event_id=string&from=2019-08-24T14%3A15%3A22Z&to=2019-08-24T14%3A15%3A22Z&status=ACTIVE&sort=-created_at' \
-H 'Authorization: Bearer <YOUR_TOKEN_HERE>'Response
- PRIVATE
- COMPANY
{ "next": "string", "items": [ { … } ] }