I want to get a list of all of the people outside of our organization who have attended our events. If I do this:
curl --request GET \
--url "https://api.calendly.com/event_types?organization=https://api.calendly.com/organizations/" \
--header 'Authorization: Bearer {hidden} \
--header 'Content-Type: application/json'
Then I seem to get a list of all of the events, but the list is much shorter than it should be.
How do I get a list of every event that we’ve done in the last 6 months?
Once I have that, I would like to get a list of attendees. So I try this:
curl --request GET \
--url "https://api.calendly.com/scheduled_events/3df748e3-6d1a-4ede-abcd-39b1de2c17ca/invitees?organization=https://api.calendly.com/organizations/" \
--header 'Authorization: Bearer {hidden} \
--header 'Content-Type: application/json'
I’m using a UUID I found in the responses to the first cURL call that I did above. But that does not work. I get “Resource not found.”
So what am I supposed to use for that UUID? Where would I find the UUID?
If I go here:
https://developer.calendly.com/api-docs/2d5ed9bbd2952-list-events
The page never mentions a UUID. I cannot find a reference to the UUID anywhere in any of the descriptive text, and yet it is listed as a required parameter when asking for the invitees.

