From 94737391dc51f2704f937911539716109ca014f0 Mon Sep 17 00:00:00 2001 From: Kevin Date: Mon, 22 Oct 2018 22:33:12 +0200 Subject: [PATCH] Created Sonarr webhook messages (markdown) --- Sonarr-webhook-messages.md | 32 ++++++++++++++++++++++++++++++++ 1 file changed, 32 insertions(+) create mode 100644 Sonarr-webhook-messages.md diff --git a/Sonarr-webhook-messages.md b/Sonarr-webhook-messages.md new file mode 100644 index 0000000..d8d97be --- /dev/null +++ b/Sonarr-webhook-messages.md @@ -0,0 +1,32 @@ +All requests can come in by the api. We would add a sonarr webhook to deliver when a episode has been added. These are monitored with deluge_client and passed to seasonedParser when finished. + +Grabbed +``` +{ episodes: + [ { id: 9155, + episodeNumber: 4, + seasonNumber: 9, + title: 'Nightmare on Ocean Avenue Street', + airDate: '2018-10-21', + airDateUtc: '2018-10-22T00:30:00Z', + quality: 'WEBDL-1080p', + qualityVersion: 1, + releaseGroup: 'TBS' } ], + release: + { quality: 'WEBDL-1080p', + qualityVersion: 1, + releaseGroup: 'TBS', + releaseTitle: 'Bobs.Burgers.S09E04.1080p.WEB.x264-TBS[rartv]', + indexer: 'Rarbg', + size: 691175378 }, + eventType: 'Grab', + series: + { id: 38, + title: 'Bob\'s Burgers', + path: '/mnt/mainframe/shows/Bobs Burgers', + tvdbId: 194031 } } +``` + +Downloaded +``` +``` \ No newline at end of file