Button for notification tab

Hi everyone! I want to create a button which will open the notification tab in the sidebar. Is there any way to create something like this?
I already know how to create a button which opens sidebar, but I haven’t any idea how to change it for my purposes. Here is the code of tap action for sidebar button:

      tap_action:
        action: call-service
        service: |
          [[[
            this.dispatchEvent(new Event('hass-toggle-menu', { bubbles: true, composed: true}));
            return none;
          ]]]

try

this.dispatchEvent(new Event('hass-show-notifications', { bubbles: true, composed: true}));

1 Like

Thank you, that works! :slight_smile: