mirror of
https://github.com/meisnate12/Plex-Meta-Manager
synced 2024-11-22 20:43:07 +00:00
29 lines
944 B
Markdown
29 lines
944 B
Markdown
# Notifiarr Attributes
|
|
|
|
Configuring [Notifiarr](https://notifiarr.com) is optional but can allow you to send the [webhooks](webhooks.md)
|
|
straight to notifiarr.
|
|
|
|
A `notifiarr` mapping is in the root of the config file.
|
|
|
|
Below is a `notifiarr` mapping example and the full set of attributes:
|
|
|
|
```yaml
|
|
notifiarr:
|
|
apikey: ####################################
|
|
```
|
|
|
|
| Attribute | Allowed Values | Required |
|
|
|:----------|:-----------------------------------------|:------------------------------------------:|
|
|
| `apikey` | Notifiarr API Key | :fontawesome-solid-circle-check:{ .green } |
|
|
|
|
Once you have added the apikey your config.yml you have to add `notifiarr` to any [webhook](webhooks.md) to send that
|
|
notification to Notifiarr.
|
|
|
|
```yaml
|
|
webhooks:
|
|
error: notifiarr
|
|
version: notifiarr
|
|
run_start: notifiarr
|
|
run_end: notifiarr
|
|
changes: notifiarr
|
|
```
|