TL:DR:
In the List Events HTTP response (GET /scheduled_events):
- Is there a way to include a list of invitees (with the user_email field) like the array of objects in “event_guests”: s ] and “event_memberships”: r ]?
- If not, shouldn’t each event’s object include the event’s uuid to fetch further details?
_____________________________________________________________
Hi there,
I need to fetch a detailed list of events happening on a specific date, but I noticed the List Events http response does not include a list of invitees, and assuming it is not possible to get a populated array of invitees with details (like the invitee’s email) with a single request, I thought to instead chain multiple requests:
- Request List Events (GET /scheduled_events)
- Extract each event´s uuid from the response and send an individual /scheduled_events/{uuid} request for each event to get invitee’s mails.
But event uuids are also not in the ‘List Events’ response, and the only way I see to fetch those specific individual events is to extract the id from the even link string of each event’s “uri:” field, which makes me feel like I must be doing something wrong (also, the event uuid in the uri appears in a “scheduled_events/xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx” format and not something like “scheduled_events/GBGBDCAADAEDCRZ2” as in the examples in the documentation).
Any idea of the best way to proceed? Ideally I’d prefer to be able to fetch all the info in a single request, but if not possible I feel like there has to be a more convenient way of extracting event uuids.
Cheers!