Skip to main content
Print every event in the active workspace as a table or JSON. Useful as the first call when you want to find an event ID before drilling into the registrants, or as the data source for a recurring event-roster report.

Synopsis

Options

This command takes no flags beyond the global flags. Filtering and pagination happen client-side. Pipe through jq or --json to slice the result.

Examples

1. Browse events in the terminal

Prints every event as a table: ID, name, time zone, start time, location, people count, tags, created-at. Newest events appear in the order the server returns them.

2. Find an event ID with jq

Returns the ID, name, and start time of every event whose name contains Summit (case-insensitive). Use the ID with event get or event person list.

3. Snapshot events into a report

Loops over every event and writes a four-column CSV. Use a cron job for a periodic roster snapshot outside of TalkValue.

Response

endAt, location, and tags may be empty or absent on draft events. peopleCount is the count of distinct people who joined the event, the same number the dashboard shows on the Events list.

See also