discord_get_event_subscribers
Retrieve a paginated list of users interested in a Discord scheduled event. Pass a guild and event ID to get subscribers, with optional limit and cursor for next page.
Instructions
List the users who marked themselves 'Interested' in a scheduled event. Returns { subscribers: [...], nextCursor }. A page holds up to 100 users; if nextCursor is non-null, pass it back as after to fetch the next page. Read-only.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| guild_id | Yes | Discord server (guild) ID (snowflake). | |
| event_id | Yes | ID (snowflake) of the scheduled event. | |
| limit | No | Max subscribers per page (1–100). Default 25. | |
| after | No | Pagination cursor: a user ID (snowflake). Pass the previous response's nextCursor to fetch the next page. |