Server
Get Server Capabilities
Server
Media
Butler
Plex
Library
- GETGet Hash Value
- GETGet Recently Added
- GETGet All Libraries
- GETGet library details
- DELDelete library section
- GETGet library items
- GETGet all media of library
- GETRefresh Metadata Of The Library
- GETSearch library
- GETGet Genres of library media
- GETGet Countries of library media
- GETGet Actors of library media
- GETSearch All Libraries
- GETGet Media Metadata
- GETGet Items Children
- GETGet Top Watched Content
- GETGet On Deck
Watchlist
Playlists
Authentication
Sessions
Server
Get Server Capabilities
Get Server Capabilities
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
Plex Authentication Token
Response
200
application/json
The Server Capabilities
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>"
}
]
}
}