Server
Get Server Capabilities
Server
Get Server Capabilities
Get Server Capabilities
GET
declare(strict_types=1);
require 'vendor/autoload.php';
use LukeHagar\Plex_API;
use LukeHagar\Plex_API\Models\Components;
$security = new Components\Security(
accessToken: "<YOUR_API_KEY_HERE>",
);
$sdk = Plex_API\PlexAPI::builder()
->setClientID('gcgzw5rz2xovp84b4vha3a40')
->setClientName('Plex Web')
->setClientVersion('4.133.0')
->setClientPlatform('Chrome')
->setDeviceName('Linux')
->setSecurity($security)->build();
try {
$response = $sdk->server->getServerCapabilities();
if ($response->object !== null) {
// handle response
}
} catch (Throwable $e) {
// handle exception
}
{
"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
declare(strict_types=1);
require 'vendor/autoload.php';
use LukeHagar\Plex_API;
use LukeHagar\Plex_API\Models\Components;
$security = new Components\Security(
accessToken: "<YOUR_API_KEY_HERE>",
);
$sdk = Plex_API\PlexAPI::builder()
->setClientID('gcgzw5rz2xovp84b4vha3a40')
->setClientName('Plex Web')
->setClientVersion('4.133.0')
->setClientPlatform('Chrome')
->setDeviceName('Linux')
->setSecurity($security)->build();
try {
$response = $sdk->server->getServerCapabilities();
if ($response->object !== null) {
// handle response
}
} catch (Throwable $e) {
// handle exception
}
{
"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>"
}
]
}
}