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

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

var res = await sdk.Server.GetServerCapabilitiesAsync();

// handle response
{
  "MediaContainer": {
    "size": 123,
    "allowCameraUpload": true,
    "allowChannelAccess": true,
    "allowMediaDeletion": true,
    "allowSharing": true,
    "allowSync": true,
    "allowTuners": true,
    "backgroundProcessing": true,
    "certificate": true,
    "companionProxy": true,
    "countryCode": "<string>",
    "diagnostics": "<string>",
    "eventStream": true,
    "friendlyName": "<string>",
    "hubSearch": true,
    "itemClusters": true,
    "livetv": 123,
    "machineIdentifier": "<string>",
    "mediaProviders": true,
    "multiuser": true,
    "musicAnalysis": 123,
    "myPlex": true,
    "myPlexMappingState": "<string>",
    "myPlexSigninState": "<string>",
    "myPlexSubscription": true,
    "myPlexUsername": "<string>",
    "offlineTranscode": 123,
    "ownerFeatures": "<string>",
    "photoAutoTag": true,
    "platform": "<string>",
    "platformVersion": "<string>",
    "pluginHost": true,
    "pushNotifications": true,
    "readOnlyLibraries": true,
    "streamingBrainABRVersion": 123,
    "streamingBrainVersion": 123,
    "sync": true,
    "transcoderActiveVideoSessions": 123,
    "transcoderAudio": true,
    "transcoderLyrics": true,
    "transcoderPhoto": true,
    "transcoderSubtitles": true,
    "transcoderVideo": true,
    "transcoderVideoBitrates": "<string>",
    "transcoderVideoQualities": "<string>",
    "transcoderVideoResolutions": "<string>",
    "updatedAt": 123,
    "updater": true,
    "version": "<string>",
    "voiceSearch": true,
    "Directory": [
      {
        "count": 123,
        "key": "<string>",
        "title": "<string>"
      }
    ]
  }
}

Authorizations

X-Plex-Token
string
header
required

Plex Authentication Token

Response

200
application/json
The Server Capabilities
MediaContainer
object