BetaSeries: polls
betaseries_pollsRetrieve and manage BetaSeries polls: get the latest poll, list all polls, fetch details by ID or target, and post answers.
Instructions
Call the BetaSeries "polls" API. Pick an operation and pass its parameters in the params object.
Available operations:
get-polls-last [GET /polls/last]: Display the latest active poll. Params: no parameters
get-polls-list [GET /polls/list]: Display all polls. Params: nbpp? (Number of results per page, default 10), page? (Page number, default 1), inactive? (Display inactive polls (1 or 0, default 0))
get-polls-poll [GET /polls/poll]: Display the details of a poll. Params: id? (Poll ID)
get-polls-target [GET /polls/target]: Display the latest active poll. Params: type? (Target type (episode or show)), ref_id? (ID of the episode or series)
post-polls-answer [POST /polls/answer]: Send a response to a poll. Params: id? (Poll ID), answer? (Answer number)
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| params | No | Query parameters for the chosen operation, as string key/value pairs. See this tool's description for the accepted parameter names per operation. | |
| operation | Yes | Which operation to perform |