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

28 lines
834 B
Markdown
Raw Normal View History

2022-03-08 08:06:22 +00:00
# Notifiarr Attributes
2022-10-26 18:01:39 +00:00
Configuring [Notifiarr](https://notifiarr.com) is optional but can allow you to send the [webhooks](webhooks) straight to notifiarr.
2022-03-08 08:06:22 +00:00
A `notifiarr` mapping is in the root of the config file.
Below is a `notifiarr` mapping example and the full set of attributes:
2022-10-26 18:01:39 +00:00
2022-03-08 08:06:22 +00:00
```yaml
notifiarr:
apikey: ####################################
```
2022-07-19 14:54:13 +00:00
| Attribute | Allowed Values | Required |
|:----------|:-----------------------------------------|:--------:|
| `apikey` | Notifiarr API Key | ✅ |
2022-03-08 08:06:22 +00:00
2022-10-26 18:01:39 +00:00
Once you have added the apikey your config.yml you have to add `notifiarr` to any [webhook](webhooks) to send that notification to Notifiarr.
2022-03-08 08:06:22 +00:00
```yaml
webhooks:
error: notifiarr
2022-03-18 13:00:42 +00:00
version: notifiarr
2022-03-08 08:06:22 +00:00
run_start: notifiarr
run_end: notifiarr
2022-10-26 18:01:39 +00:00
changes: notifiarr
2022-03-08 08:06:22 +00:00
```