1
0
mirror of https://github.com/Sonarr/Sonarr.git synced 2024-11-21 18:22:42 +01:00

Added page for PR #5160

Ultimate 2022-09-18 16:54:18 +02:00
parent 3a6fdea37e
commit 1c4231346a

21
Custom-Lists.md Normal file

@ -0,0 +1,21 @@
The Custom Lists feature in sonarr gives developers the possiblity to create APIs that output lists for sonarr to import.
As an example, the content of the list that sonarr gets from the given URL should look something like this:
```json
[
{
"tvdbId": "12345"
},
{
"tvdbId": "67890"
},
{
"tvdbId": "74185"
},
{
"tvdbId": "36985"
}
]
```