PUT
/
updater
/
apply
using LukeHagar.PlexAPI.SDK;
using LukeHagar.PlexAPI.SDK.Models.Components;
using LukeHagar.PlexAPI.SDK.Models.Requests;

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

var res = await sdk.Updater.ApplyUpdatesAsync(
    tonight: Tonight.One,
    skip: Skip.One
);

// handle response
This response does not have an example.

Authorizations

X-Plex-Token
string
header
required

Plex Authentication Token

Query Parameters

tonight
enum<integer>

Indicate that you want the update to run during the next Butler execution. Omitting this or setting it to false indicates that the update should install

Available options:
0,
1
skip
enum<integer>

Indicate that the latest version should be marked as skipped. The [Release] entry for this version will have the state set to skipped.

Available options:
0,
1

Response

200
_mintlify/placeholder

If the update process started correctly