list_polls
Retrieve polls from a Loomio group ordered by creation date. Filter by status to view active, closed, or all polls. Use to check current proposals or past results before creating a new poll.
Instructions
List polls in a Loomio group, ordered by creation date (newest first). Required: group_id. Optional status filter — 'active' (default), 'closed', 'all' (every kept poll); limit 1-200 (default 50); offset for pagination. Caller must be a group member. Use to answer 'what's up for vote in group X', 'show me past poll results', or before create_poll to check what's already proposed. FOR PER-USER PARTICIPATION QUESTIONS — 'who voted', 'how often did X vote', 'compare members' turnout' — prefer get_user_activity. It returns participation directly (via the underlying events stream) and avoids the ambiguity between 'didn't vote' and 'abstained' that you can't tell apart from a list_polls response alone.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| group_id | Yes | ID of the Loomio group whose polls to list (required). | |
| status | No | Filter polls by status. Loomio defaults to 'active'. | |
| limit | No | Page size. Loomio defaults to 50. | |
| offset | No | Page offset. Defaults to 0. |