polls_get_voters
List users who voted for a specific answer on a Discord poll. Provide channel_id, message_id, and answer_id to fetch voter details.
Instructions
Purpose: List users who voted for a specific answer on a poll.
Path: /channels/{channel.id}/polls/{message.id}/answers/{answer_id}. answer_id is a poll-local integer (NOT a snowflake).
Returns: {voters:[{id, username}], count, untrusted_text}. Usernames remain raw Discord data; untrusted_text provides a separately fenced copy.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| after | No | Cursor: only voters with id > this | |
| limit | No | Max voters to return (1..100, default 25) | |
| answer_id | Yes | Poll answer ID (integer, not snowflake) | |
| channel_id | Yes | Channel containing the poll message | |
| message_id | Yes | Poll message ID |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||