> ## Documentation Index
> Fetch the complete documentation index at: https://docs.keephq.dev/llms.txt
> Use this file to discover all available pages before exploring further.

# Pushover

> Pushover docs

## Authentication

This provider requires authentication.

* **token**: Pushover app token (required: True, sensitive: True)
* **user\_key**: Pushover user key (required: True, sensitive: False)

## In workflows

This provider can be used in workflows.

As "action" to make changes or update data, example:

```yaml theme={null}
actions:
    - name: Query pushover
      provider: pushover
      config: "{{ provider.my_provider_name }}"
      with:
        message: {value}  # The content of the message.
        title: {value}  # Optional notification title.
        priority: {value}  # Message priority (-2 to 2, where 2 is emergency).
        sound: {value}  # Pushover sound name.
        retry: {value}  # Retry interval in seconds for emergency priority.
        expire: {value}  # Expiry in seconds for emergency priority.
```

If you need workflow examples with this provider, please raise a [GitHub issue](https://github.com/keephq/keep/issues).

Token:

<img src="https://mintcdn.com/keep-docs/oOz41askvZuXfasg/images/token.jpeg?fit=max&auto=format&n=oOz41askvZuXfasg&q=85&s=6ea6b5ea444d8f741fb0032c72d79b60" alt="Token" width="1256" height="600" data-path="images/token.jpeg" />

User key:

<img src="https://mintcdn.com/keep-docs/LjPasDs8HZ8u-5Qy/images/user-key.jpeg?fit=max&auto=format&n=LjPasDs8HZ8u-5Qy&q=85&s=876b9f5191bbf3ee3a3cb83ea4b13984" alt="User key" width="2552" height="1034" data-path="images/user-key.jpeg" />

## Useful Links

* [https://support.pushover.net/i44-example-code-and-pushover-libraries#python](https://support.pushover.net/i44-example-code-and-pushover-libraries#python)
