Return a list of events

GET /events/bydate/{from_date}/{to_date}/ids/{location_ids}

Search for a list of events using a date range, and location ids

This allows for authenticated call - which shows events for the authenticated user, or non-authenticated calls which shows only public events, i.e. events that are visible on the iternet.

Path parameters

  • from_date string Required

    The first date to include, YYYY-MM-DD format. Date is local time

  • to_date string Required

    The last date to include, YYYY-MM-DD format. Date is local time

  • location_ids string Required

    Filter the events by location IDs when location = ids

Responses

  • 200

    See /events/bydate/{from_date}/{to_date}/{location} for output description

GET /events/bydate/{from_date}/{to_date}/ids/{location_ids}
curl \
 -X GET https://YOURSITE.infoodle.com/apiv2/events/bydate/{from_date}/{to_date}/ids/{location_ids} \
 -H "Authorization: Bearer $ACCESS_TOKEN"