vote_poll()#

Client.vote_poll()#

Vote a poll.

Usable by Users Bots
Parameters:
  • chat_id (int | str) – Unique identifier (int) or username (str) of the target chat. For your personal cloud (Saved Messages) you can simply use “me” or “self”. For a contact that exists in your Telegram address book you can use his phone number (str).

  • message_id (int) – Identifier of the original message with the poll.

  • options (Int | List of int) – Index or list of indexes (for multiple answers) of the poll option(s) you want to vote for (0 to 9).

Returns:

Poll - On success, the poll with the chosen option is returned.

Example

await app.vote_poll(chat_id, message_id, 6)