Skip to content

Latest commit

 

History

History
31 lines (19 loc) · 1.11 KB

readme.md

File metadata and controls

31 lines (19 loc) · 1.11 KB

Plex Server Webhooks

Build Status GitHub release NuGet

A library to parse event webhooks from Plex server.

Download via NuGet

Install Plex.Server.Webhooks via NuGet package manager (nuget.org)

Install-Package Plex.Server.Webhooks

Usage

Declare WebhookParser and call ParseEvent. This takes in string as JSON received from the HTTP POST callback.

var parser = new WebhookParser();
var events = parser.ParseEvent(json);

Plex Webhook Documentation

Check out the documentation on Plex: https://support.plex.tv/hc/en-us/articles/115002267687-Webhooks

Thanks