Unable to send more than 3 options with actionable notifications

Hi,

I am trying to move from Telegram to the official app but can’t work out why only the first three of these options show up. There is plenty of display space left, is there a limit on how many actions we can send?

- alias: Turn off climate control when using from grid
  trigger:
    platform: numeric_state
    entity_id: sensor.p_grid
    above: 0.01
    for:
      minutes: 10
  condition:
    condition: or
    conditions:
      - condition: template
        value_template: '{{ states.climate.bedroom_ac.state != "off" }}'
      - condition: template
        value_template: '{{ states.climate.living_room_ac.state != "off" }}'
  action:
    - service: notify.mobile_app_mi_mix_3
      data:
        title: "AC Alert Bed: {{ states.climate.bedroom_ac.attributes.temperature }} {{ states.climate.bedroom_ac.attributes.last_on_operation }}, Living: {{ states.climate.living_room_ac.attributes.temperature }} {{ states.climate.living_room_ac.attributes.last_on_operation }}"
        message: "Producing {{states('sensor.p_pv')}}, using {{states('sensor.p_grid')}} from grid, temp is {{states('sensor.mi_t_582d3431fe3e')}} in kitchen, {{states('sensor.bedroom_air_purifier_temp')}} in bedroom & {{states('sensor.living_room_temperature')}} in the living room. What should we do about this?"
        data:
          ttl: 0
          priority: high
          tag: climate
          actions:
            - action: "1"
              title: "1"
            - action: "2"
              title: "2"
            - action: "3"
              title: "3"
            - action: "4"
              title: "4"
            - action: "5"
              title: "5"

yes its limited to 3 per Google

https://developer.android.com/training/notify-user/build-notification#Actions

1 Like

Ahh I see, thank you.