Event Attendees
Manage event attendance. Users can mark themselves as attending an event and view the list of attendees for any event.
Retrieves the list of users who have marked themselves as attending this event.
Path parameters
event_idstring · uuidRequired
Event UUID
Responses
200
List of attendees
application/json
404
Not found - resource doesn't exist
application/json
500
Internal server error
application/json
get
/events/{event_id}/attendeesMarks the authenticated user as attending this event.
Path parameters
event_idstring · uuidRequired
Event UUID
Responses
200
Successfully marked as attending
application/json
401
Unauthorized - authentication required
application/json
404
Not found - resource doesn't exist
application/json
500
Internal server error
application/json
post
/events/{event_id}/attendeesRemoves the authenticated user from the event's attendee list.
Path parameters
event_idstring · uuidRequired
Event UUID
Responses
200
Successfully removed from attendees
application/json
401
Unauthorized - authentication required
application/json
404
Not found - resource doesn't exist
application/json
500
Internal server error
application/json
delete
/events/{event_id}/attendeesLast updated