Plex-Meta-Manager/docs/config/gotify.md

32 lines
984 B
Markdown
Raw Permalink Normal View History

2024-01-18 00:23:06 +00:00
# Gotify Attributes
Configuring [Gotify](https://gotify.net/) is optional but can allow you to send the [webhooks](webhooks.md)
2024-01-18 12:15:24 +00:00
straight to gotify.
2024-01-18 00:23:06 +00:00
A `gotify` mapping is in the root of the config file.
Below is a `gotify` mapping example and the full set of attributes:
```yaml
gotify:
url: ####################################
2024-01-26 17:16:10 +00:00
token: ####################################
2024-01-18 00:23:06 +00:00
```
2024-01-26 17:16:10 +00:00
| Attribute | Allowed Values | Required |
|:----------|:-------------------------|:------------------------------------------:|
| `url` | Gotify Server Url | :fontawesome-solid-circle-check:{ .green } |
| `token` | Gotify Application Token | :fontawesome-solid-circle-check:{ .green } |
2024-01-18 00:23:06 +00:00
Once you have added the apikey your config.yml you have to add `gotify` to any [webhook](webhooks.md) to send that
notification to Gotify.
```yaml
webhooks:
error: gotify
version: gotify
run_start: gotify
run_end: gotify
changes: gotify
```