virtual_event_attendees
GET /virtual-events/:sessionID/attendees — List Live Call attendees
List the attendees of a Live Call — the DCers who RSVPd yes or maybe (the same set behind attendeeCount, mirroring how GET /events/:eventID/attendees counts RSVPs). Profiles use the standard other-person shape (identical to GET /events/:eventID/attendees and GET /profile-match): public fields plus privacy-gated annualRevenue + teamSize where the member shares them. Hidden and guest profiles are filtered out.
Access: any active DCer who can see the Live Call. DC BLACK-only calls stay tier-gated — DC-tier callers get tier_restricted (403).
Pagination: page with ?limit= (1-100, default 100) plus the opaque ?cursor= from the previous response's nextCursor (null when there are no more).
See GET /virtual-events/:sessionID for the call itself, and GET /events/:eventID/attendees for the in-person equivalent.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| limit | No | Max results (1-100). | |
| cursor | No | Cursor from a previous response's `nextCursor`. Pass to fetch the next page. | |
| sessionID | Yes | The Live Call session ID. Find IDs via `GET /virtual-events`. |