createTwitchPoll
Enable engagement on Twitch by creating live polls directly through your stream chat. Input a title, choices, and duration to interact with viewers in real-time.
Instructions
Create a Twitch Poll
Input Schema
Name | Required | Description | Default |
---|---|---|---|
choices | Yes | Comma-separated choices | |
duration | Yes | Duration in seconds | |
title | Yes | Poll title |
Input Schema (JSON Schema)
{
"properties": {
"choices": {
"description": "Comma-separated choices",
"type": "string"
},
"duration": {
"description": "Duration in seconds",
"type": "integer"
},
"title": {
"description": "Poll title",
"type": "string"
}
},
"required": [
"title",
"choices",
"duration"
],
"type": "object"
}