GET
/
butler
using LukeHagar.PlexAPI.SDK;
using LukeHagar.PlexAPI.SDK.Models.Components;

var sdk = new PlexAPI(accessToken: "<YOUR_API_KEY_HERE>");

var res = await sdk.Butler.GetButlerTasksAsync();

// handle response
{
  "ButlerTasks": {
    "ButlerTask": [
      {
        "name": "BackupDatabase",
        "interval": 3,
        "scheduleRandomized": true,
        "enabled": true,
        "title": "Backup Database",
        "description": "Create a backup copy of the server's database in the configured backup directory"
      }
    ]
  }
}

Authorizations

X-Plex-Token
string
header
required

Plex Authentication Token

Response

200
application/json
All butler tasks
ButlerTasks
object