Help sending message to telegram group

I think Im doing everything correctly.

i can send to an individual id but I cant send to a group chat

What am I missing???

config.yaml

telegram_bot:
  platform: broadcast
  api_key: 2342344234234apikey
  allowed_chat_ids:
    - -4020762902   #  <-  group_id

automation:

action:
  - choose:
      - conditions:
          - condition: trigger
            id:
              - door_sensor
        sequence:
          - service: telegram_bot.send_message
            data:
              message: Back door {{ states('sensor.door_error_state') }}

I can confirm that it is set up and working using bot father to an individuals ID

Hi. I’m also having the same issue. Have you managed to solve it?

notify:

  - platform: telegram
    chat_id: 2345678910
    name: person1

  - platform: telegram
    chat_id: -7777777777
    name: everyone
 

telegram_bot:
  - platform: polling
    api_key: !secret telegram_api
    allowed_chat_ids:
      - 2345678910
      - 1234567891 
      - -7777777777



action:
  - choose:
      - conditions:
          - condition: trigger
            id:
              - door_sensor
        sequence:
          - service: notify.everyone
            data:
              message: Back door {{ states('sensor.door_error_state') }}

Here’s how I do it with some examples.