Skip to main content
Page through the people registered for a single event. Combine filters to slice the roster, then pipe to jq or save as JSON. The dashboard event-detail page uses the same backend query.

Synopsis

Arguments

Options

Examples

1. Browse the latest registrants

Prints the 20 most recent registrants as a table: ID, name, primary email, company, job title, joined-at, created-at.

2. Filter by channel and pipe to jq

Returns people on event 18 who also belong to channel 7, stripped to three fields. The --json envelope carries .pagination.

3. Walk every page in a script

Loops until a page returns no rows. See Scripting with jq for richer pagination patterns.

Response

pagination appears only in --json. companyName is a flattened convenience field. The full company object is also included. joinedAt is when the person registered for the event. The channels array carries a slim per-person shape — { id, name, icon, joinedAt } — and events carries { id, name, joinedAt }. These are narrower than the full records returned by path channel and path event.

See also