Telegram bot send_poll

Hello!

I’ve got my Telegram Bot up and running and have been able to send notifications and photos without any issue. However, when attempting to use the send_poll service, the bot doesn’t seem to respond. I followed the documentation. The service is firing, but the bot is not outputting anything.

YAML service test:

service: telegram_bot.send_poll
data:
  question: Question
  options:
    - Option 1
    - Option 2

Entries in my configuration.yaml related to Telegram:

telegram_bot:
  - platform: broadcast
    api_key: !secret telegram_api
    allowed_chat_ids:
      - !secret telegram_chat_id

  - platform: polling
    api_key: !secret telegram_api
    allowed_chat_ids:
      - !secret telegram_chat_id

Any assistance would be appreciated!

Any errors in logs?