mirror of
https://github.com/LukeHagar/plexjava.git
synced 2025-12-06 12:37:47 +00:00
Compare commits
4 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
8100bcbf96 | ||
|
|
10a61122c2 | ||
|
|
fbca010d26 | ||
|
|
beae244178 |
File diff suppressed because one or more lines are too long
@@ -12,7 +12,7 @@ generation:
|
||||
auth:
|
||||
oAuth2ClientCredentialsEnabled: true
|
||||
java:
|
||||
version: 0.4.0
|
||||
version: 0.6.1
|
||||
additionalDependencies: []
|
||||
additionalPlugins: []
|
||||
artifactID: plexapi
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
speakeasyVersion: 1.401.2
|
||||
speakeasyVersion: 1.404.5
|
||||
sources:
|
||||
my-source:
|
||||
sourceNamespace: my-source
|
||||
@@ -8,8 +8,8 @@ sources:
|
||||
- latest
|
||||
plexapi:
|
||||
sourceNamespace: plexapi
|
||||
sourceRevisionDigest: sha256:5aa71ad96ca6de91143ee513c9880e08e555e7748fb4b5f8d069c6ab0c8f3069
|
||||
sourceBlobDigest: sha256:1cbef844e2856c2eabba4bd6d677d96c572fed13b27978d0d953aa06b224c02f
|
||||
sourceRevisionDigest: sha256:ed1af8e79d553cc0bf2f8f7975f445d80cb8bd58390bca18d1352577da5ec5ed
|
||||
sourceBlobDigest: sha256:157db2a169209c18fdca786b671c5da8d2b14dc3005574d08c9d667320869093
|
||||
tags:
|
||||
- latest
|
||||
- main
|
||||
@@ -17,10 +17,10 @@ targets:
|
||||
plexjava:
|
||||
source: plexapi
|
||||
sourceNamespace: plexapi
|
||||
sourceRevisionDigest: sha256:5aa71ad96ca6de91143ee513c9880e08e555e7748fb4b5f8d069c6ab0c8f3069
|
||||
sourceBlobDigest: sha256:1cbef844e2856c2eabba4bd6d677d96c572fed13b27978d0d953aa06b224c02f
|
||||
sourceRevisionDigest: sha256:ed1af8e79d553cc0bf2f8f7975f445d80cb8bd58390bca18d1352577da5ec5ed
|
||||
sourceBlobDigest: sha256:157db2a169209c18fdca786b671c5da8d2b14dc3005574d08c9d667320869093
|
||||
codeSamplesNamespace: code-samples-java-plexjava
|
||||
codeSamplesRevisionDigest: sha256:e98bd3fd8e811e5368343de5de5c1f0c7d154bf8ab1b56532fe72b65bc70297c
|
||||
codeSamplesRevisionDigest: sha256:e01f78cd36aeb5eb46235c59f38fe7c81fa8b7b0b56fb76cf9c56af914f8e3a5
|
||||
workflow:
|
||||
workflowVersion: 1.0.0
|
||||
speakeasyVersion: latest
|
||||
|
||||
34
README.md
34
README.md
@@ -12,6 +12,31 @@
|
||||
## Summary
|
||||
|
||||
Plex-API: An Open API Spec for interacting with Plex.tv and Plex Media Server
|
||||
|
||||
# Plex Media Server OpenAPI Specification
|
||||
|
||||
An Open Source OpenAPI Specification for Plex Media Server
|
||||
|
||||
Automation and SDKs provided by [Speakeasy](https://speakeasyapi.dev/)
|
||||
|
||||
## Documentation
|
||||
|
||||
[API Documentation](https://plexapi.dev)
|
||||
|
||||
## SDKs
|
||||
|
||||
The following SDKs are generated from the OpenAPI Specification. They are automatically generated and may not be fully tested. If you find any issues, please open an issue on the [main specification Repository](https://github.com/LukeHagar/plex-api-spec).
|
||||
|
||||
| Language | Repository | Releases | Other |
|
||||
| --------------------- | ------------------------------------------------- | ------------------------------------------------------------------------------------------------ | ------------------------------------------------------- |
|
||||
| Python | [GitHub](https://github.com/LukeHagar/plexpy) | [PyPI](https://pypi.org/project/plex-api-client/) | - |
|
||||
| JavaScript/TypeScript | [GitHub](https://github.com/LukeHagar/plexjs) | [NPM](https://www.npmjs.com/package/@lukehagar/plexjs) \ [JSR](https://jsr.io/@lukehagar/plexjs) | - |
|
||||
| Go | [GitHub](https://github.com/LukeHagar/plexgo) | [Releases](https://github.com/LukeHagar/plexgo/releases) | [GoDoc](https://pkg.go.dev/github.com/LukeHagar/plexgo) |
|
||||
| Ruby | [GitHub](https://github.com/LukeHagar/plexruby) | [Releases](https://github.com/LukeHagar/plexruby/releases) | - |
|
||||
| Swift | [GitHub](https://github.com/LukeHagar/plexswift) | [Releases](https://github.com/LukeHagar/plexswift/releases) | - |
|
||||
| PHP | [GitHub](https://github.com/LukeHagar/plexphp) | [Releases](https://github.com/LukeHagar/plexphp/releases) | - |
|
||||
| Java | [GitHub](https://github.com/LukeHagar/plexjava) | [Releases](https://github.com/LukeHagar/plexjava/releases) | - |
|
||||
| C# | [GitHub](https://github.com/LukeHagar/plexcsharp) | [Releases](https://github.com/LukeHagar/plexcsharp/releases) | -
|
||||
<!-- End Summary [summary] -->
|
||||
|
||||
<!-- Start Table of Contents [toc] -->
|
||||
@@ -37,7 +62,7 @@ The samples below show how a published SDK artifact is used:
|
||||
|
||||
Gradle:
|
||||
```groovy
|
||||
implementation 'dev.plexapi:plexapi:0.4.0'
|
||||
implementation 'dev.plexapi:plexapi:0.6.1'
|
||||
```
|
||||
|
||||
Maven:
|
||||
@@ -45,7 +70,7 @@ Maven:
|
||||
<dependency>
|
||||
<groupId>dev.plexapi</groupId>
|
||||
<artifactId>plexapi</artifactId>
|
||||
<version>0.4.0</version>
|
||||
<version>0.6.1</version>
|
||||
</dependency>
|
||||
```
|
||||
|
||||
@@ -131,12 +156,13 @@ public class Application {
|
||||
### [hubs()](docs/sdks/hubs/README.md)
|
||||
|
||||
* [getGlobalHubs](docs/sdks/hubs/README.md#getglobalhubs) - Get Global Hubs
|
||||
* [getRecentlyAdded](docs/sdks/hubs/README.md#getrecentlyadded) - Get Recently Added
|
||||
* [getLibraryHubs](docs/sdks/hubs/README.md#getlibraryhubs) - Get library specific hubs
|
||||
|
||||
### [library()](docs/sdks/library/README.md)
|
||||
|
||||
* [getFileHash](docs/sdks/library/README.md#getfilehash) - Get Hash Value
|
||||
* [getRecentlyAdded](docs/sdks/library/README.md#getrecentlyadded) - Get Recently Added
|
||||
* [getRecentlyAddedLibrary](docs/sdks/library/README.md#getrecentlyaddedlibrary) - Get Recently Added
|
||||
* [getAllLibraries](docs/sdks/library/README.md#getalllibraries) - Get All Libraries
|
||||
* [getLibraryDetails](docs/sdks/library/README.md#getlibrarydetails) - Get Library Details
|
||||
* [deleteLibrary](docs/sdks/library/README.md#deletelibrary) - Delete Library Section
|
||||
@@ -457,7 +483,7 @@ public class Application {
|
||||
.build();
|
||||
|
||||
GetCompanionsDataResponse res = sdk.plex().getCompanionsData()
|
||||
.serverURL("https://plex.tv/api/v2/")
|
||||
.serverURL("https://plex.tv/api/v2")
|
||||
.call();
|
||||
|
||||
if (res.responseBodies().isPresent()) {
|
||||
|
||||
42
RELEASES.md
42
RELEASES.md
@@ -78,4 +78,44 @@ Based on:
|
||||
### Generated
|
||||
- [java v0.4.0] .
|
||||
### Releases
|
||||
- [Maven Central v0.4.0] https://central.sonatype.com/artifact/dev.plexapi/plexapi/0.4.0 - .
|
||||
- [Maven Central v0.4.0] https://central.sonatype.com/artifact/dev.plexapi/plexapi/0.4.0 - .
|
||||
|
||||
## 2024-09-22 00:27:50
|
||||
### Changes
|
||||
Based on:
|
||||
- OpenAPI Doc
|
||||
- Speakeasy CLI 1.401.2 (2.421.3) https://github.com/speakeasy-api/speakeasy
|
||||
### Generated
|
||||
- [java v0.4.1] .
|
||||
### Releases
|
||||
- [Maven Central v0.4.1] https://central.sonatype.com/artifact/dev.plexapi/plexapi/0.4.1 - .
|
||||
|
||||
## 2024-09-26 00:25:07
|
||||
### Changes
|
||||
Based on:
|
||||
- OpenAPI Doc
|
||||
- Speakeasy CLI 1.402.14 (2.422.22) https://github.com/speakeasy-api/speakeasy
|
||||
### Generated
|
||||
- [java v0.5.0] .
|
||||
### Releases
|
||||
- [Maven Central v0.5.0] https://central.sonatype.com/artifact/dev.plexapi/plexapi/0.5.0 - .
|
||||
|
||||
## 2024-09-28 00:25:08
|
||||
### Changes
|
||||
Based on:
|
||||
- OpenAPI Doc
|
||||
- Speakeasy CLI 1.404.5 (2.426.2) https://github.com/speakeasy-api/speakeasy
|
||||
### Generated
|
||||
- [java v0.6.0] .
|
||||
### Releases
|
||||
- [Maven Central v0.6.0] https://central.sonatype.com/artifact/dev.plexapi/plexapi/0.6.0 - .
|
||||
|
||||
## 2024-09-29 00:28:35
|
||||
### Changes
|
||||
Based on:
|
||||
- OpenAPI Doc
|
||||
- Speakeasy CLI 1.404.5 (2.426.2) https://github.com/speakeasy-api/speakeasy
|
||||
### Generated
|
||||
- [java v0.6.1] .
|
||||
### Releases
|
||||
- [Maven Central v0.6.1] https://central.sonatype.com/artifact/dev.plexapi/plexapi/0.6.1 - .
|
||||
@@ -63,7 +63,7 @@ tasks.withType(Javadoc) {
|
||||
}
|
||||
|
||||
group = "dev.plexapi"
|
||||
version = "0.4.0"
|
||||
version = "0.6.1"
|
||||
|
||||
sourcesJar {
|
||||
archiveBaseName = "plexapi"
|
||||
@@ -101,7 +101,7 @@ publishing {
|
||||
maven(MavenPublication) {
|
||||
groupId = 'dev.plexapi'
|
||||
artifactId = 'plexapi'
|
||||
version = '0.4.0'
|
||||
version = '0.6.1'
|
||||
|
||||
from components.java
|
||||
|
||||
@@ -152,6 +152,9 @@ dependencies {
|
||||
implementation 'org.apache.httpcomponents:httpclient:4.5.14'
|
||||
implementation 'org.apache.httpcomponents:httpmime:4.5.14'
|
||||
implementation 'commons-io:commons-io:2.15.1'
|
||||
testImplementation 'org.junit.jupiter:junit-jupiter:5.10.2'
|
||||
testImplementation 'org.mockito:mockito-core:5.12.0'
|
||||
testRuntimeOnly 'org.junit.platform:junit-platform-launcher:1.10.2'
|
||||
}
|
||||
|
||||
|
||||
|
||||
125
codeSamples.yaml
125
codeSamples.yaml
@@ -708,6 +708,52 @@ actions:
|
||||
.onlyTransient(OnlyTransient.ONE)
|
||||
.call();
|
||||
|
||||
if (res.object().isPresent()) {
|
||||
// handle response
|
||||
}
|
||||
}
|
||||
}
|
||||
- target: $["paths"]["/hubs/home/recentlyAdded"]["get"]
|
||||
update:
|
||||
x-codeSamples:
|
||||
- lang: java
|
||||
label: added
|
||||
source: |-
|
||||
package hello.world;
|
||||
|
||||
import dev.plexapi.plexapi.PlexAPI;
|
||||
import dev.plexapi.plexapi.models.operations.GetRecentlyAddedRequest;
|
||||
import dev.plexapi.plexapi.models.operations.GetRecentlyAddedResponse;
|
||||
import dev.plexapi.plexapi.models.operations.IncludeMeta;
|
||||
import dev.plexapi.plexapi.models.operations.Type;
|
||||
import java.lang.Exception;
|
||||
|
||||
public class Application {
|
||||
|
||||
public static void main(String[] args) throws Exception {
|
||||
|
||||
PlexAPI sdk = PlexAPI.builder()
|
||||
.accessToken("<YOUR_API_KEY_HERE>")
|
||||
.clientID("gcgzw5rz2xovp84b4vha3a40")
|
||||
.clientName("Plex Web")
|
||||
.clientVersion("4.133.0")
|
||||
.clientPlatform("Chrome")
|
||||
.deviceName("Linux")
|
||||
.build();
|
||||
|
||||
GetRecentlyAddedRequest req = GetRecentlyAddedRequest.builder()
|
||||
.contentDirectoryID(470161L)
|
||||
.type(Type.TvShow)
|
||||
.sectionID(2L)
|
||||
.includeMeta(IncludeMeta.Enable)
|
||||
.xPlexContainerStart(0)
|
||||
.xPlexContainerSize(50)
|
||||
.build();
|
||||
|
||||
GetRecentlyAddedResponse res = sdk.hubs().getRecentlyAdded()
|
||||
.request(req)
|
||||
.call();
|
||||
|
||||
if (res.object().isPresent()) {
|
||||
// handle response
|
||||
}
|
||||
@@ -742,7 +788,7 @@ actions:
|
||||
|
||||
PerformSearchResponse res = sdk.search().performSearch()
|
||||
.query("dylan")
|
||||
.sectionId(5838.67d)
|
||||
.sectionId(9372.69d)
|
||||
.limit(5d)
|
||||
.call();
|
||||
|
||||
@@ -886,7 +932,7 @@ actions:
|
||||
.build();
|
||||
|
||||
GetTopWatchedContentResponse res = sdk.library().getTopWatchedContent()
|
||||
.type(GetTopWatchedContentQueryParamType.Show)
|
||||
.type(GetTopWatchedContentQueryParamType.TvShow)
|
||||
.includeGuids(1L)
|
||||
.call();
|
||||
|
||||
@@ -1134,19 +1180,23 @@ actions:
|
||||
update:
|
||||
x-codeSamples:
|
||||
- lang: java
|
||||
label: getRecentlyAdded
|
||||
label: library
|
||||
source: |-
|
||||
package hello.world;
|
||||
|
||||
import dev.plexapi.plexapi.PlexAPI;
|
||||
import dev.plexapi.plexapi.models.errors.GetRecentlyAddedBadRequest;
|
||||
import dev.plexapi.plexapi.models.errors.GetRecentlyAddedUnauthorized;
|
||||
import dev.plexapi.plexapi.models.operations.GetRecentlyAddedResponse;
|
||||
import dev.plexapi.plexapi.models.errors.GetRecentlyAddedLibraryBadRequest;
|
||||
import dev.plexapi.plexapi.models.errors.GetRecentlyAddedLibraryUnauthorized;
|
||||
import dev.plexapi.plexapi.models.operations.GetRecentlyAddedLibraryRequest;
|
||||
import dev.plexapi.plexapi.models.operations.GetRecentlyAddedLibraryResponse;
|
||||
import dev.plexapi.plexapi.models.operations.QueryParamIncludeMeta;
|
||||
import dev.plexapi.plexapi.models.operations.QueryParamType;
|
||||
import java.lang.Exception;
|
||||
import java.util.List;
|
||||
|
||||
public class Application {
|
||||
|
||||
public static void main(String[] args) throws GetRecentlyAddedBadRequest, GetRecentlyAddedUnauthorized, Exception {
|
||||
public static void main(String[] args) throws GetRecentlyAddedLibraryBadRequest, GetRecentlyAddedLibraryUnauthorized, Exception {
|
||||
|
||||
PlexAPI sdk = PlexAPI.builder()
|
||||
.accessToken("<YOUR_API_KEY_HERE>")
|
||||
@@ -1157,9 +1207,30 @@ actions:
|
||||
.deviceName("Linux")
|
||||
.build();
|
||||
|
||||
GetRecentlyAddedResponse res = sdk.library().getRecentlyAdded()
|
||||
GetRecentlyAddedLibraryRequest req = GetRecentlyAddedLibraryRequest.builder()
|
||||
.type(QueryParamType.TvShow)
|
||||
.contentDirectoryID(2L)
|
||||
.pinnedContentDirectoryID(List.of(
|
||||
3L,
|
||||
5L,
|
||||
7L,
|
||||
13L,
|
||||
12L,
|
||||
1L,
|
||||
6L,
|
||||
14L,
|
||||
2L,
|
||||
10L,
|
||||
16L,
|
||||
17L))
|
||||
.sectionID(2L)
|
||||
.includeMeta(QueryParamIncludeMeta.Enable)
|
||||
.xPlexContainerStart(0)
|
||||
.xPlexContainerSize(50)
|
||||
.build();
|
||||
|
||||
GetRecentlyAddedLibraryResponse res = sdk.library().getRecentlyAddedLibrary()
|
||||
.request(req)
|
||||
.call();
|
||||
|
||||
if (res.object().isPresent()) {
|
||||
@@ -1366,8 +1437,8 @@ actions:
|
||||
import dev.plexapi.plexapi.PlexAPI;
|
||||
import dev.plexapi.plexapi.models.errors.GetSearchLibraryBadRequest;
|
||||
import dev.plexapi.plexapi.models.errors.GetSearchLibraryUnauthorized;
|
||||
import dev.plexapi.plexapi.models.operations.GetSearchLibraryQueryParamType;
|
||||
import dev.plexapi.plexapi.models.operations.GetSearchLibraryResponse;
|
||||
import dev.plexapi.plexapi.models.operations.QueryParamType;
|
||||
import java.lang.Exception;
|
||||
|
||||
public class Application {
|
||||
@@ -1385,7 +1456,7 @@ actions:
|
||||
|
||||
GetSearchLibraryResponse res = sdk.library().getSearchLibrary()
|
||||
.sectionKey(9518)
|
||||
.type(QueryParamType.Show)
|
||||
.type(GetSearchLibraryQueryParamType.TvShow)
|
||||
.call();
|
||||
|
||||
if (res.object().isPresent()) {
|
||||
@@ -1404,12 +1475,12 @@ actions:
|
||||
import dev.plexapi.plexapi.PlexAPI;
|
||||
import dev.plexapi.plexapi.models.errors.GetLibraryItemsBadRequest;
|
||||
import dev.plexapi.plexapi.models.errors.GetLibraryItemsUnauthorized;
|
||||
import dev.plexapi.plexapi.models.operations.GetLibraryItemsQueryParamIncludeMeta;
|
||||
import dev.plexapi.plexapi.models.operations.GetLibraryItemsQueryParamType;
|
||||
import dev.plexapi.plexapi.models.operations.GetLibraryItemsRequest;
|
||||
import dev.plexapi.plexapi.models.operations.GetLibraryItemsResponse;
|
||||
import dev.plexapi.plexapi.models.operations.IncludeGuids;
|
||||
import dev.plexapi.plexapi.models.operations.IncludeMeta;
|
||||
import dev.plexapi.plexapi.models.operations.Tag;
|
||||
import dev.plexapi.plexapi.models.operations.Type;
|
||||
import java.lang.Exception;
|
||||
|
||||
public class Application {
|
||||
@@ -1428,9 +1499,9 @@ actions:
|
||||
GetLibraryItemsRequest req = GetLibraryItemsRequest.builder()
|
||||
.sectionKey(9518)
|
||||
.tag(Tag.EDITION)
|
||||
.type(Type.Show)
|
||||
.includeGuids(IncludeGuids.Enable)
|
||||
.includeMeta(IncludeMeta.Enable)
|
||||
.type(GetLibraryItemsQueryParamType.TvShow)
|
||||
.includeMeta(GetLibraryItemsQueryParamIncludeMeta.Enable)
|
||||
.xPlexContainerStart(0)
|
||||
.xPlexContainerSize(50)
|
||||
.build();
|
||||
@@ -1657,8 +1728,8 @@ actions:
|
||||
.width(110d)
|
||||
.height(165d)
|
||||
.opacity(100L)
|
||||
.blur(0d)
|
||||
.minSize(MinSize.ONE)
|
||||
.blur(20d)
|
||||
.minSize(MinSize.ZERO)
|
||||
.upscale(Upscale.ONE)
|
||||
.url("/library/metadata/49564/thumb/1654258204")
|
||||
.build();
|
||||
@@ -1719,6 +1790,7 @@ actions:
|
||||
import dev.plexapi.plexapi.PlexAPI;
|
||||
import dev.plexapi.plexapi.models.errors.GetTokenByPinIdBadRequest;
|
||||
import dev.plexapi.plexapi.models.errors.GetTokenByPinIdResponseBody;
|
||||
import dev.plexapi.plexapi.models.operations.GetTokenByPinIdRequest;
|
||||
import dev.plexapi.plexapi.models.operations.GetTokenByPinIdResponse;
|
||||
import java.lang.Exception;
|
||||
|
||||
@@ -1734,8 +1806,12 @@ actions:
|
||||
.deviceName("Linux")
|
||||
.build();
|
||||
|
||||
GetTokenByPinIdResponse res = sdk.plex().getTokenByPinId()
|
||||
GetTokenByPinIdRequest req = GetTokenByPinIdRequest.builder()
|
||||
.pinID(408895L)
|
||||
.build();
|
||||
|
||||
GetTokenByPinIdResponse res = sdk.plex().getTokenByPinId()
|
||||
.request(req)
|
||||
.call();
|
||||
|
||||
if (res.authPinContainer().isPresent()) {
|
||||
@@ -2035,7 +2111,7 @@ actions:
|
||||
|
||||
GetPlaylistContentsResponse res = sdk.playlists().getPlaylistContents()
|
||||
.playlistID(5004.46d)
|
||||
.type(GetPlaylistContentsQueryParamType.Show)
|
||||
.type(GetPlaylistContentsQueryParamType.TvShow)
|
||||
.call();
|
||||
|
||||
if (res.object().isPresent()) {
|
||||
@@ -2186,7 +2262,7 @@ actions:
|
||||
.build();
|
||||
|
||||
GetSourceConnectionInformationResponse res = sdk.authentication().getSourceConnectionInformation()
|
||||
.source("provider://provider-identifier")
|
||||
.source("server://client-identifier")
|
||||
.call();
|
||||
|
||||
// handle response
|
||||
@@ -2670,6 +2746,7 @@ actions:
|
||||
import dev.plexapi.plexapi.PlexAPI;
|
||||
import dev.plexapi.plexapi.models.errors.PostUsersSignInDataBadRequest;
|
||||
import dev.plexapi.plexapi.models.errors.PostUsersSignInDataUnauthorized;
|
||||
import dev.plexapi.plexapi.models.operations.PostUsersSignInDataRequest;
|
||||
import dev.plexapi.plexapi.models.operations.PostUsersSignInDataRequestBody;
|
||||
import dev.plexapi.plexapi.models.operations.PostUsersSignInDataResponse;
|
||||
import java.lang.Exception;
|
||||
@@ -2686,10 +2763,12 @@ actions:
|
||||
.deviceName("Linux")
|
||||
.build();
|
||||
|
||||
PostUsersSignInDataRequestBody req = PostUsersSignInDataRequestBody.builder()
|
||||
.login("username@email.com")
|
||||
.password("password123")
|
||||
.verificationCode("123456")
|
||||
PostUsersSignInDataRequest req = PostUsersSignInDataRequest.builder()
|
||||
.requestBody(PostUsersSignInDataRequestBody.builder()
|
||||
.login("username@email.com")
|
||||
.password("password123")
|
||||
.verificationCode("123456")
|
||||
.build())
|
||||
.build();
|
||||
|
||||
PostUsersSignInDataResponse res = sdk.authentication().postUsersSignInData()
|
||||
|
||||
@@ -5,6 +5,6 @@
|
||||
|
||||
| Field | Type | Required | Description | Example |
|
||||
| ----------------------------------- | ----------------------------------- | ----------------------------------- | ----------------------------------- | ----------------------------------- |
|
||||
| `code` | *Optional<Long>* | :heavy_minus_sign: | N/A | 1000 |
|
||||
| `code` | *Optional<Integer>* | :heavy_minus_sign: | N/A | 1000 |
|
||||
| `message` | *Optional<String>* | :heavy_minus_sign: | N/A | X-Plex-Client-Identifier is missing |
|
||||
| `status` | *Optional<Long>* | :heavy_minus_sign: | N/A | 400 |
|
||||
| `status` | *Optional<Integer>* | :heavy_minus_sign: | N/A | 400 |
|
||||
@@ -5,6 +5,6 @@
|
||||
|
||||
| Field | Type | Required | Description | Example |
|
||||
| ------------------------------- | ------------------------------- | ------------------------------- | ------------------------------- | ------------------------------- |
|
||||
| `code` | *Optional<Long>* | :heavy_minus_sign: | N/A | 1001 |
|
||||
| `code` | *Optional<Integer>* | :heavy_minus_sign: | N/A | 1001 |
|
||||
| `message` | *Optional<String>* | :heavy_minus_sign: | N/A | User could not be authenticated |
|
||||
| `status` | *Optional<Long>* | :heavy_minus_sign: | N/A | 401 |
|
||||
| `status` | *Optional<Integer>* | :heavy_minus_sign: | N/A | 401 |
|
||||
@@ -5,6 +5,6 @@
|
||||
|
||||
| Field | Type | Required | Description | Example |
|
||||
| ----------------------------------- | ----------------------------------- | ----------------------------------- | ----------------------------------- | ----------------------------------- |
|
||||
| `code` | *Optional<Long>* | :heavy_minus_sign: | N/A | 1000 |
|
||||
| `code` | *Optional<Integer>* | :heavy_minus_sign: | N/A | 1000 |
|
||||
| `message` | *Optional<String>* | :heavy_minus_sign: | N/A | X-Plex-Client-Identifier is missing |
|
||||
| `status` | *Optional<Long>* | :heavy_minus_sign: | N/A | 400 |
|
||||
| `status` | *Optional<Integer>* | :heavy_minus_sign: | N/A | 400 |
|
||||
@@ -5,6 +5,6 @@
|
||||
|
||||
| Field | Type | Required | Description | Example |
|
||||
| ------------------------------- | ------------------------------- | ------------------------------- | ------------------------------- | ------------------------------- |
|
||||
| `code` | *Optional<Long>* | :heavy_minus_sign: | N/A | 1001 |
|
||||
| `code` | *Optional<Integer>* | :heavy_minus_sign: | N/A | 1001 |
|
||||
| `message` | *Optional<String>* | :heavy_minus_sign: | N/A | User could not be authenticated |
|
||||
| `status` | *Optional<Long>* | :heavy_minus_sign: | N/A | 401 |
|
||||
| `status` | *Optional<Integer>* | :heavy_minus_sign: | N/A | 401 |
|
||||
@@ -5,6 +5,6 @@
|
||||
|
||||
| Field | Type | Required | Description | Example |
|
||||
| ------------------------------- | ------------------------------- | ------------------------------- | ------------------------------- | ------------------------------- |
|
||||
| `code` | *Optional<Long>* | :heavy_minus_sign: | N/A | 1001 |
|
||||
| `code` | *Optional<Integer>* | :heavy_minus_sign: | N/A | 1001 |
|
||||
| `message` | *Optional<String>* | :heavy_minus_sign: | N/A | User could not be authenticated |
|
||||
| `status` | *Optional<Long>* | :heavy_minus_sign: | N/A | 401 |
|
||||
| `status` | *Optional<Integer>* | :heavy_minus_sign: | N/A | 401 |
|
||||
@@ -5,6 +5,6 @@
|
||||
|
||||
| Field | Type | Required | Description | Example |
|
||||
| ----------------------------------- | ----------------------------------- | ----------------------------------- | ----------------------------------- | ----------------------------------- |
|
||||
| `code` | *Optional<Long>* | :heavy_minus_sign: | N/A | 1000 |
|
||||
| `code` | *Optional<Integer>* | :heavy_minus_sign: | N/A | 1000 |
|
||||
| `message` | *Optional<String>* | :heavy_minus_sign: | N/A | X-Plex-Client-Identifier is missing |
|
||||
| `status` | *Optional<Long>* | :heavy_minus_sign: | N/A | 400 |
|
||||
| `status` | *Optional<Integer>* | :heavy_minus_sign: | N/A | 400 |
|
||||
@@ -5,6 +5,6 @@
|
||||
|
||||
| Field | Type | Required | Description | Example |
|
||||
| ----------------------------------- | ----------------------------------- | ----------------------------------- | ----------------------------------- | ----------------------------------- |
|
||||
| `code` | *Optional<Long>* | :heavy_minus_sign: | N/A | 1000 |
|
||||
| `code` | *Optional<Integer>* | :heavy_minus_sign: | N/A | 1000 |
|
||||
| `message` | *Optional<String>* | :heavy_minus_sign: | N/A | X-Plex-Client-Identifier is missing |
|
||||
| `status` | *Optional<Long>* | :heavy_minus_sign: | N/A | 400 |
|
||||
| `status` | *Optional<Integer>* | :heavy_minus_sign: | N/A | 400 |
|
||||
@@ -5,6 +5,6 @@
|
||||
|
||||
| Field | Type | Required | Description | Example |
|
||||
| ------------------------------- | ------------------------------- | ------------------------------- | ------------------------------- | ------------------------------- |
|
||||
| `code` | *Optional<Long>* | :heavy_minus_sign: | N/A | 1001 |
|
||||
| `code` | *Optional<Integer>* | :heavy_minus_sign: | N/A | 1001 |
|
||||
| `message` | *Optional<String>* | :heavy_minus_sign: | N/A | User could not be authenticated |
|
||||
| `status` | *Optional<Long>* | :heavy_minus_sign: | N/A | 401 |
|
||||
| `status` | *Optional<Integer>* | :heavy_minus_sign: | N/A | 401 |
|
||||
@@ -5,6 +5,6 @@
|
||||
|
||||
| Field | Type | Required | Description | Example |
|
||||
| ----------------------------------- | ----------------------------------- | ----------------------------------- | ----------------------------------- | ----------------------------------- |
|
||||
| `code` | *Optional<Long>* | :heavy_minus_sign: | N/A | 1000 |
|
||||
| `code` | *Optional<Integer>* | :heavy_minus_sign: | N/A | 1000 |
|
||||
| `message` | *Optional<String>* | :heavy_minus_sign: | N/A | X-Plex-Client-Identifier is missing |
|
||||
| `status` | *Optional<Long>* | :heavy_minus_sign: | N/A | 400 |
|
||||
| `status` | *Optional<Integer>* | :heavy_minus_sign: | N/A | 400 |
|
||||
@@ -5,6 +5,6 @@
|
||||
|
||||
| Field | Type | Required | Description | Example |
|
||||
| ------------------------------- | ------------------------------- | ------------------------------- | ------------------------------- | ------------------------------- |
|
||||
| `code` | *Optional<Long>* | :heavy_minus_sign: | N/A | 1001 |
|
||||
| `code` | *Optional<Integer>* | :heavy_minus_sign: | N/A | 1001 |
|
||||
| `message` | *Optional<String>* | :heavy_minus_sign: | N/A | User could not be authenticated |
|
||||
| `status` | *Optional<Long>* | :heavy_minus_sign: | N/A | 401 |
|
||||
| `status` | *Optional<Integer>* | :heavy_minus_sign: | N/A | 401 |
|
||||
@@ -5,6 +5,6 @@
|
||||
|
||||
| Field | Type | Required | Description | Example |
|
||||
| ----------------------------------- | ----------------------------------- | ----------------------------------- | ----------------------------------- | ----------------------------------- |
|
||||
| `code` | *Optional<Long>* | :heavy_minus_sign: | N/A | 1000 |
|
||||
| `code` | *Optional<Integer>* | :heavy_minus_sign: | N/A | 1000 |
|
||||
| `message` | *Optional<String>* | :heavy_minus_sign: | N/A | X-Plex-Client-Identifier is missing |
|
||||
| `status` | *Optional<Long>* | :heavy_minus_sign: | N/A | 400 |
|
||||
| `status` | *Optional<Integer>* | :heavy_minus_sign: | N/A | 400 |
|
||||
@@ -5,6 +5,6 @@
|
||||
|
||||
| Field | Type | Required | Description | Example |
|
||||
| ------------------------------- | ------------------------------- | ------------------------------- | ------------------------------- | ------------------------------- |
|
||||
| `code` | *Optional<Long>* | :heavy_minus_sign: | N/A | 1001 |
|
||||
| `code` | *Optional<Integer>* | :heavy_minus_sign: | N/A | 1001 |
|
||||
| `message` | *Optional<String>* | :heavy_minus_sign: | N/A | User could not be authenticated |
|
||||
| `status` | *Optional<Long>* | :heavy_minus_sign: | N/A | 401 |
|
||||
| `status` | *Optional<Integer>* | :heavy_minus_sign: | N/A | 401 |
|
||||
@@ -5,6 +5,6 @@
|
||||
|
||||
| Field | Type | Required | Description | Example |
|
||||
| ----------------------------------- | ----------------------------------- | ----------------------------------- | ----------------------------------- | ----------------------------------- |
|
||||
| `code` | *Optional<Long>* | :heavy_minus_sign: | N/A | 1000 |
|
||||
| `code` | *Optional<Integer>* | :heavy_minus_sign: | N/A | 1000 |
|
||||
| `message` | *Optional<String>* | :heavy_minus_sign: | N/A | X-Plex-Client-Identifier is missing |
|
||||
| `status` | *Optional<Long>* | :heavy_minus_sign: | N/A | 400 |
|
||||
| `status` | *Optional<Integer>* | :heavy_minus_sign: | N/A | 400 |
|
||||
@@ -5,6 +5,6 @@
|
||||
|
||||
| Field | Type | Required | Description | Example |
|
||||
| ------------------------------- | ------------------------------- | ------------------------------- | ------------------------------- | ------------------------------- |
|
||||
| `code` | *Optional<Long>* | :heavy_minus_sign: | N/A | 1001 |
|
||||
| `code` | *Optional<Integer>* | :heavy_minus_sign: | N/A | 1001 |
|
||||
| `message` | *Optional<String>* | :heavy_minus_sign: | N/A | User could not be authenticated |
|
||||
| `status` | *Optional<Long>* | :heavy_minus_sign: | N/A | 401 |
|
||||
| `status` | *Optional<Integer>* | :heavy_minus_sign: | N/A | 401 |
|
||||
@@ -5,6 +5,6 @@
|
||||
|
||||
| Field | Type | Required | Description | Example |
|
||||
| ----------------------------------- | ----------------------------------- | ----------------------------------- | ----------------------------------- | ----------------------------------- |
|
||||
| `code` | *Optional<Long>* | :heavy_minus_sign: | N/A | 1000 |
|
||||
| `code` | *Optional<Integer>* | :heavy_minus_sign: | N/A | 1000 |
|
||||
| `message` | *Optional<String>* | :heavy_minus_sign: | N/A | X-Plex-Client-Identifier is missing |
|
||||
| `status` | *Optional<Long>* | :heavy_minus_sign: | N/A | 400 |
|
||||
| `status` | *Optional<Integer>* | :heavy_minus_sign: | N/A | 400 |
|
||||
@@ -5,6 +5,6 @@
|
||||
|
||||
| Field | Type | Required | Description | Example |
|
||||
| ------------------------------- | ------------------------------- | ------------------------------- | ------------------------------- | ------------------------------- |
|
||||
| `code` | *Optional<Long>* | :heavy_minus_sign: | N/A | 1001 |
|
||||
| `code` | *Optional<Integer>* | :heavy_minus_sign: | N/A | 1001 |
|
||||
| `message` | *Optional<String>* | :heavy_minus_sign: | N/A | User could not be authenticated |
|
||||
| `status` | *Optional<Long>* | :heavy_minus_sign: | N/A | 401 |
|
||||
| `status` | *Optional<Integer>* | :heavy_minus_sign: | N/A | 401 |
|
||||
@@ -5,6 +5,6 @@
|
||||
|
||||
| Field | Type | Required | Description | Example |
|
||||
| ----------------------------------- | ----------------------------------- | ----------------------------------- | ----------------------------------- | ----------------------------------- |
|
||||
| `code` | *Optional<Long>* | :heavy_minus_sign: | N/A | 1000 |
|
||||
| `code` | *Optional<Integer>* | :heavy_minus_sign: | N/A | 1000 |
|
||||
| `message` | *Optional<String>* | :heavy_minus_sign: | N/A | X-Plex-Client-Identifier is missing |
|
||||
| `status` | *Optional<Long>* | :heavy_minus_sign: | N/A | 400 |
|
||||
| `status` | *Optional<Integer>* | :heavy_minus_sign: | N/A | 400 |
|
||||
@@ -5,6 +5,6 @@
|
||||
|
||||
| Field | Type | Required | Description | Example |
|
||||
| ------------------------------- | ------------------------------- | ------------------------------- | ------------------------------- | ------------------------------- |
|
||||
| `code` | *Optional<Long>* | :heavy_minus_sign: | N/A | 1001 |
|
||||
| `code` | *Optional<Integer>* | :heavy_minus_sign: | N/A | 1001 |
|
||||
| `message` | *Optional<String>* | :heavy_minus_sign: | N/A | User could not be authenticated |
|
||||
| `status` | *Optional<Long>* | :heavy_minus_sign: | N/A | 401 |
|
||||
| `status` | *Optional<Integer>* | :heavy_minus_sign: | N/A | 401 |
|
||||
@@ -5,6 +5,6 @@
|
||||
|
||||
| Field | Type | Required | Description | Example |
|
||||
| ----------------------------------- | ----------------------------------- | ----------------------------------- | ----------------------------------- | ----------------------------------- |
|
||||
| `code` | *Optional<Long>* | :heavy_minus_sign: | N/A | 1000 |
|
||||
| `code` | *Optional<Integer>* | :heavy_minus_sign: | N/A | 1000 |
|
||||
| `message` | *Optional<String>* | :heavy_minus_sign: | N/A | X-Plex-Client-Identifier is missing |
|
||||
| `status` | *Optional<Long>* | :heavy_minus_sign: | N/A | 400 |
|
||||
| `status` | *Optional<Integer>* | :heavy_minus_sign: | N/A | 400 |
|
||||
@@ -5,6 +5,6 @@
|
||||
|
||||
| Field | Type | Required | Description | Example |
|
||||
| ----------------------------------- | ----------------------------------- | ----------------------------------- | ----------------------------------- | ----------------------------------- |
|
||||
| `code` | *Optional<Long>* | :heavy_minus_sign: | N/A | 1000 |
|
||||
| `code` | *Optional<Integer>* | :heavy_minus_sign: | N/A | 1000 |
|
||||
| `message` | *Optional<String>* | :heavy_minus_sign: | N/A | X-Plex-Client-Identifier is missing |
|
||||
| `status` | *Optional<Long>* | :heavy_minus_sign: | N/A | 400 |
|
||||
| `status` | *Optional<Integer>* | :heavy_minus_sign: | N/A | 400 |
|
||||
@@ -5,6 +5,6 @@
|
||||
|
||||
| Field | Type | Required | Description | Example |
|
||||
| ------------------------------- | ------------------------------- | ------------------------------- | ------------------------------- | ------------------------------- |
|
||||
| `code` | *Optional<Long>* | :heavy_minus_sign: | N/A | 1001 |
|
||||
| `code` | *Optional<Integer>* | :heavy_minus_sign: | N/A | 1001 |
|
||||
| `message` | *Optional<String>* | :heavy_minus_sign: | N/A | User could not be authenticated |
|
||||
| `status` | *Optional<Long>* | :heavy_minus_sign: | N/A | 401 |
|
||||
| `status` | *Optional<Integer>* | :heavy_minus_sign: | N/A | 401 |
|
||||
@@ -5,6 +5,6 @@
|
||||
|
||||
| Field | Type | Required | Description | Example |
|
||||
| ----------------------------------- | ----------------------------------- | ----------------------------------- | ----------------------------------- | ----------------------------------- |
|
||||
| `code` | *Optional<Long>* | :heavy_minus_sign: | N/A | 1000 |
|
||||
| `code` | *Optional<Integer>* | :heavy_minus_sign: | N/A | 1000 |
|
||||
| `message` | *Optional<String>* | :heavy_minus_sign: | N/A | X-Plex-Client-Identifier is missing |
|
||||
| `status` | *Optional<Long>* | :heavy_minus_sign: | N/A | 400 |
|
||||
| `status` | *Optional<Integer>* | :heavy_minus_sign: | N/A | 400 |
|
||||
@@ -5,6 +5,6 @@
|
||||
|
||||
| Field | Type | Required | Description | Example |
|
||||
| ------------------------------- | ------------------------------- | ------------------------------- | ------------------------------- | ------------------------------- |
|
||||
| `code` | *Optional<Long>* | :heavy_minus_sign: | N/A | 1001 |
|
||||
| `code` | *Optional<Integer>* | :heavy_minus_sign: | N/A | 1001 |
|
||||
| `message` | *Optional<String>* | :heavy_minus_sign: | N/A | User could not be authenticated |
|
||||
| `status` | *Optional<Long>* | :heavy_minus_sign: | N/A | 401 |
|
||||
| `status` | *Optional<Integer>* | :heavy_minus_sign: | N/A | 401 |
|
||||
@@ -5,6 +5,6 @@
|
||||
|
||||
| Field | Type | Required | Description | Example |
|
||||
| ----------------------------------- | ----------------------------------- | ----------------------------------- | ----------------------------------- | ----------------------------------- |
|
||||
| `code` | *Optional<Long>* | :heavy_minus_sign: | N/A | 1000 |
|
||||
| `code` | *Optional<Integer>* | :heavy_minus_sign: | N/A | 1000 |
|
||||
| `message` | *Optional<String>* | :heavy_minus_sign: | N/A | X-Plex-Client-Identifier is missing |
|
||||
| `status` | *Optional<Long>* | :heavy_minus_sign: | N/A | 400 |
|
||||
| `status` | *Optional<Integer>* | :heavy_minus_sign: | N/A | 400 |
|
||||
@@ -5,6 +5,6 @@
|
||||
|
||||
| Field | Type | Required | Description | Example |
|
||||
| ------------------------------- | ------------------------------- | ------------------------------- | ------------------------------- | ------------------------------- |
|
||||
| `code` | *Optional<Long>* | :heavy_minus_sign: | N/A | 1001 |
|
||||
| `code` | *Optional<Integer>* | :heavy_minus_sign: | N/A | 1001 |
|
||||
| `message` | *Optional<String>* | :heavy_minus_sign: | N/A | User could not be authenticated |
|
||||
| `status` | *Optional<Long>* | :heavy_minus_sign: | N/A | 401 |
|
||||
| `status` | *Optional<Integer>* | :heavy_minus_sign: | N/A | 401 |
|
||||
@@ -5,6 +5,6 @@
|
||||
|
||||
| Field | Type | Required | Description | Example |
|
||||
| ----------------------------------- | ----------------------------------- | ----------------------------------- | ----------------------------------- | ----------------------------------- |
|
||||
| `code` | *Optional<Long>* | :heavy_minus_sign: | N/A | 1000 |
|
||||
| `code` | *Optional<Integer>* | :heavy_minus_sign: | N/A | 1000 |
|
||||
| `message` | *Optional<String>* | :heavy_minus_sign: | N/A | X-Plex-Client-Identifier is missing |
|
||||
| `status` | *Optional<Long>* | :heavy_minus_sign: | N/A | 400 |
|
||||
| `status` | *Optional<Integer>* | :heavy_minus_sign: | N/A | 400 |
|
||||
@@ -5,6 +5,6 @@
|
||||
|
||||
| Field | Type | Required | Description | Example |
|
||||
| ------------------------------- | ------------------------------- | ------------------------------- | ------------------------------- | ------------------------------- |
|
||||
| `code` | *Optional<Long>* | :heavy_minus_sign: | N/A | 1001 |
|
||||
| `code` | *Optional<Integer>* | :heavy_minus_sign: | N/A | 1001 |
|
||||
| `message` | *Optional<String>* | :heavy_minus_sign: | N/A | User could not be authenticated |
|
||||
| `status` | *Optional<Long>* | :heavy_minus_sign: | N/A | 401 |
|
||||
| `status` | *Optional<Integer>* | :heavy_minus_sign: | N/A | 401 |
|
||||
@@ -5,6 +5,6 @@
|
||||
|
||||
| Field | Type | Required | Description | Example |
|
||||
| ------------------------------- | ------------------------------- | ------------------------------- | ------------------------------- | ------------------------------- |
|
||||
| `code` | *Optional<Long>* | :heavy_minus_sign: | N/A | 1001 |
|
||||
| `code` | *Optional<Integer>* | :heavy_minus_sign: | N/A | 1001 |
|
||||
| `message` | *Optional<String>* | :heavy_minus_sign: | N/A | User could not be authenticated |
|
||||
| `status` | *Optional<Long>* | :heavy_minus_sign: | N/A | 401 |
|
||||
| `status` | *Optional<Integer>* | :heavy_minus_sign: | N/A | 401 |
|
||||
@@ -5,6 +5,6 @@
|
||||
|
||||
| Field | Type | Required | Description | Example |
|
||||
| ----------------------------------- | ----------------------------------- | ----------------------------------- | ----------------------------------- | ----------------------------------- |
|
||||
| `code` | *Optional<Long>* | :heavy_minus_sign: | N/A | 1000 |
|
||||
| `code` | *Optional<Integer>* | :heavy_minus_sign: | N/A | 1000 |
|
||||
| `message` | *Optional<String>* | :heavy_minus_sign: | N/A | X-Plex-Client-Identifier is missing |
|
||||
| `status` | *Optional<Long>* | :heavy_minus_sign: | N/A | 400 |
|
||||
| `status` | *Optional<Integer>* | :heavy_minus_sign: | N/A | 400 |
|
||||
@@ -5,6 +5,6 @@
|
||||
|
||||
| Field | Type | Required | Description | Example |
|
||||
| ----------------------------------- | ----------------------------------- | ----------------------------------- | ----------------------------------- | ----------------------------------- |
|
||||
| `code` | *Optional<Long>* | :heavy_minus_sign: | N/A | 1000 |
|
||||
| `code` | *Optional<Integer>* | :heavy_minus_sign: | N/A | 1000 |
|
||||
| `message` | *Optional<String>* | :heavy_minus_sign: | N/A | X-Plex-Client-Identifier is missing |
|
||||
| `status` | *Optional<Long>* | :heavy_minus_sign: | N/A | 400 |
|
||||
| `status` | *Optional<Integer>* | :heavy_minus_sign: | N/A | 400 |
|
||||
@@ -5,6 +5,6 @@
|
||||
|
||||
| Field | Type | Required | Description | Example |
|
||||
| ------------------------------- | ------------------------------- | ------------------------------- | ------------------------------- | ------------------------------- |
|
||||
| `code` | *Optional<Long>* | :heavy_minus_sign: | N/A | 1001 |
|
||||
| `code` | *Optional<Integer>* | :heavy_minus_sign: | N/A | 1001 |
|
||||
| `message` | *Optional<String>* | :heavy_minus_sign: | N/A | User could not be authenticated |
|
||||
| `status` | *Optional<Long>* | :heavy_minus_sign: | N/A | 401 |
|
||||
| `status` | *Optional<Integer>* | :heavy_minus_sign: | N/A | 401 |
|
||||
@@ -5,6 +5,6 @@
|
||||
|
||||
| Field | Type | Required | Description | Example |
|
||||
| ----------------------------------- | ----------------------------------- | ----------------------------------- | ----------------------------------- | ----------------------------------- |
|
||||
| `code` | *Optional<Long>* | :heavy_minus_sign: | N/A | 1000 |
|
||||
| `code` | *Optional<Integer>* | :heavy_minus_sign: | N/A | 1000 |
|
||||
| `message` | *Optional<String>* | :heavy_minus_sign: | N/A | X-Plex-Client-Identifier is missing |
|
||||
| `status` | *Optional<Long>* | :heavy_minus_sign: | N/A | 400 |
|
||||
| `status` | *Optional<Integer>* | :heavy_minus_sign: | N/A | 400 |
|
||||
@@ -5,6 +5,6 @@
|
||||
|
||||
| Field | Type | Required | Description | Example |
|
||||
| ------------------------------- | ------------------------------- | ------------------------------- | ------------------------------- | ------------------------------- |
|
||||
| `code` | *Optional<Long>* | :heavy_minus_sign: | N/A | 1001 |
|
||||
| `code` | *Optional<Integer>* | :heavy_minus_sign: | N/A | 1001 |
|
||||
| `message` | *Optional<String>* | :heavy_minus_sign: | N/A | User could not be authenticated |
|
||||
| `status` | *Optional<Long>* | :heavy_minus_sign: | N/A | 401 |
|
||||
| `status` | *Optional<Integer>* | :heavy_minus_sign: | N/A | 401 |
|
||||
@@ -5,6 +5,6 @@
|
||||
|
||||
| Field | Type | Required | Description | Example |
|
||||
| ----------------------------------- | ----------------------------------- | ----------------------------------- | ----------------------------------- | ----------------------------------- |
|
||||
| `code` | *Optional<Long>* | :heavy_minus_sign: | N/A | 1000 |
|
||||
| `code` | *Optional<Integer>* | :heavy_minus_sign: | N/A | 1000 |
|
||||
| `message` | *Optional<String>* | :heavy_minus_sign: | N/A | X-Plex-Client-Identifier is missing |
|
||||
| `status` | *Optional<Long>* | :heavy_minus_sign: | N/A | 400 |
|
||||
| `status` | *Optional<Integer>* | :heavy_minus_sign: | N/A | 400 |
|
||||
@@ -5,6 +5,6 @@
|
||||
|
||||
| Field | Type | Required | Description | Example |
|
||||
| ------------------------------- | ------------------------------- | ------------------------------- | ------------------------------- | ------------------------------- |
|
||||
| `code` | *Optional<Long>* | :heavy_minus_sign: | N/A | 1001 |
|
||||
| `code` | *Optional<Integer>* | :heavy_minus_sign: | N/A | 1001 |
|
||||
| `message` | *Optional<String>* | :heavy_minus_sign: | N/A | User could not be authenticated |
|
||||
| `status` | *Optional<Long>* | :heavy_minus_sign: | N/A | 401 |
|
||||
| `status` | *Optional<Integer>* | :heavy_minus_sign: | N/A | 401 |
|
||||
@@ -5,6 +5,6 @@
|
||||
|
||||
| Field | Type | Required | Description | Example |
|
||||
| ----------------------------------- | ----------------------------------- | ----------------------------------- | ----------------------------------- | ----------------------------------- |
|
||||
| `code` | *Optional<Long>* | :heavy_minus_sign: | N/A | 1000 |
|
||||
| `code` | *Optional<Integer>* | :heavy_minus_sign: | N/A | 1000 |
|
||||
| `message` | *Optional<String>* | :heavy_minus_sign: | N/A | X-Plex-Client-Identifier is missing |
|
||||
| `status` | *Optional<Long>* | :heavy_minus_sign: | N/A | 400 |
|
||||
| `status` | *Optional<Integer>* | :heavy_minus_sign: | N/A | 400 |
|
||||
@@ -5,6 +5,6 @@
|
||||
|
||||
| Field | Type | Required | Description | Example |
|
||||
| ------------------------------- | ------------------------------- | ------------------------------- | ------------------------------- | ------------------------------- |
|
||||
| `code` | *Optional<Long>* | :heavy_minus_sign: | N/A | 1001 |
|
||||
| `code` | *Optional<Integer>* | :heavy_minus_sign: | N/A | 1001 |
|
||||
| `message` | *Optional<String>* | :heavy_minus_sign: | N/A | User could not be authenticated |
|
||||
| `status` | *Optional<Long>* | :heavy_minus_sign: | N/A | 401 |
|
||||
| `status` | *Optional<Integer>* | :heavy_minus_sign: | N/A | 401 |
|
||||
@@ -5,6 +5,6 @@
|
||||
|
||||
| Field | Type | Required | Description | Example |
|
||||
| ----------------------------------- | ----------------------------------- | ----------------------------------- | ----------------------------------- | ----------------------------------- |
|
||||
| `code` | *Optional<Long>* | :heavy_minus_sign: | N/A | 1000 |
|
||||
| `code` | *Optional<Integer>* | :heavy_minus_sign: | N/A | 1000 |
|
||||
| `message` | *Optional<String>* | :heavy_minus_sign: | N/A | X-Plex-Client-Identifier is missing |
|
||||
| `status` | *Optional<Long>* | :heavy_minus_sign: | N/A | 400 |
|
||||
| `status` | *Optional<Integer>* | :heavy_minus_sign: | N/A | 400 |
|
||||
@@ -5,6 +5,6 @@
|
||||
|
||||
| Field | Type | Required | Description | Example |
|
||||
| ------------------------------- | ------------------------------- | ------------------------------- | ------------------------------- | ------------------------------- |
|
||||
| `code` | *Optional<Long>* | :heavy_minus_sign: | N/A | 1001 |
|
||||
| `code` | *Optional<Integer>* | :heavy_minus_sign: | N/A | 1001 |
|
||||
| `message` | *Optional<String>* | :heavy_minus_sign: | N/A | User could not be authenticated |
|
||||
| `status` | *Optional<Long>* | :heavy_minus_sign: | N/A | 401 |
|
||||
| `status` | *Optional<Integer>* | :heavy_minus_sign: | N/A | 401 |
|
||||
@@ -5,6 +5,6 @@
|
||||
|
||||
| Field | Type | Required | Description | Example |
|
||||
| ----------------------------------- | ----------------------------------- | ----------------------------------- | ----------------------------------- | ----------------------------------- |
|
||||
| `code` | *Optional<Long>* | :heavy_minus_sign: | N/A | 1000 |
|
||||
| `code` | *Optional<Integer>* | :heavy_minus_sign: | N/A | 1000 |
|
||||
| `message` | *Optional<String>* | :heavy_minus_sign: | N/A | X-Plex-Client-Identifier is missing |
|
||||
| `status` | *Optional<Long>* | :heavy_minus_sign: | N/A | 400 |
|
||||
| `status` | *Optional<Integer>* | :heavy_minus_sign: | N/A | 400 |
|
||||
@@ -5,6 +5,6 @@
|
||||
|
||||
| Field | Type | Required | Description | Example |
|
||||
| ------------------------------- | ------------------------------- | ------------------------------- | ------------------------------- | ------------------------------- |
|
||||
| `code` | *Optional<Long>* | :heavy_minus_sign: | N/A | 1001 |
|
||||
| `code` | *Optional<Integer>* | :heavy_minus_sign: | N/A | 1001 |
|
||||
| `message` | *Optional<String>* | :heavy_minus_sign: | N/A | User could not be authenticated |
|
||||
| `status` | *Optional<Long>* | :heavy_minus_sign: | N/A | 401 |
|
||||
| `status` | *Optional<Integer>* | :heavy_minus_sign: | N/A | 401 |
|
||||
@@ -5,6 +5,6 @@
|
||||
|
||||
| Field | Type | Required | Description | Example |
|
||||
| ----------------------------------- | ----------------------------------- | ----------------------------------- | ----------------------------------- | ----------------------------------- |
|
||||
| `code` | *Optional<Long>* | :heavy_minus_sign: | N/A | 1000 |
|
||||
| `code` | *Optional<Integer>* | :heavy_minus_sign: | N/A | 1000 |
|
||||
| `message` | *Optional<String>* | :heavy_minus_sign: | N/A | X-Plex-Client-Identifier is missing |
|
||||
| `status` | *Optional<Long>* | :heavy_minus_sign: | N/A | 400 |
|
||||
| `status` | *Optional<Integer>* | :heavy_minus_sign: | N/A | 400 |
|
||||
@@ -5,6 +5,6 @@
|
||||
|
||||
| Field | Type | Required | Description | Example |
|
||||
| ------------------------------- | ------------------------------- | ------------------------------- | ------------------------------- | ------------------------------- |
|
||||
| `code` | *Optional<Long>* | :heavy_minus_sign: | N/A | 1001 |
|
||||
| `code` | *Optional<Integer>* | :heavy_minus_sign: | N/A | 1001 |
|
||||
| `message` | *Optional<String>* | :heavy_minus_sign: | N/A | User could not be authenticated |
|
||||
| `status` | *Optional<Long>* | :heavy_minus_sign: | N/A | 401 |
|
||||
| `status` | *Optional<Integer>* | :heavy_minus_sign: | N/A | 401 |
|
||||
@@ -5,6 +5,6 @@
|
||||
|
||||
| Field | Type | Required | Description | Example |
|
||||
| ----------------------------------- | ----------------------------------- | ----------------------------------- | ----------------------------------- | ----------------------------------- |
|
||||
| `code` | *Optional<Long>* | :heavy_minus_sign: | N/A | 1000 |
|
||||
| `code` | *Optional<Integer>* | :heavy_minus_sign: | N/A | 1000 |
|
||||
| `message` | *Optional<String>* | :heavy_minus_sign: | N/A | X-Plex-Client-Identifier is missing |
|
||||
| `status` | *Optional<Long>* | :heavy_minus_sign: | N/A | 400 |
|
||||
| `status` | *Optional<Integer>* | :heavy_minus_sign: | N/A | 400 |
|
||||
@@ -5,6 +5,6 @@
|
||||
|
||||
| Field | Type | Required | Description | Example |
|
||||
| ------------------------------- | ------------------------------- | ------------------------------- | ------------------------------- | ------------------------------- |
|
||||
| `code` | *Optional<Long>* | :heavy_minus_sign: | N/A | 1001 |
|
||||
| `code` | *Optional<Integer>* | :heavy_minus_sign: | N/A | 1001 |
|
||||
| `message` | *Optional<String>* | :heavy_minus_sign: | N/A | User could not be authenticated |
|
||||
| `status` | *Optional<Long>* | :heavy_minus_sign: | N/A | 401 |
|
||||
| `status` | *Optional<Integer>* | :heavy_minus_sign: | N/A | 401 |
|
||||
@@ -5,6 +5,6 @@
|
||||
|
||||
| Field | Type | Required | Description | Example |
|
||||
| ----------------------------------- | ----------------------------------- | ----------------------------------- | ----------------------------------- | ----------------------------------- |
|
||||
| `code` | *Optional<Long>* | :heavy_minus_sign: | N/A | 1000 |
|
||||
| `code` | *Optional<Integer>* | :heavy_minus_sign: | N/A | 1000 |
|
||||
| `message` | *Optional<String>* | :heavy_minus_sign: | N/A | X-Plex-Client-Identifier is missing |
|
||||
| `status` | *Optional<Long>* | :heavy_minus_sign: | N/A | 400 |
|
||||
| `status` | *Optional<Integer>* | :heavy_minus_sign: | N/A | 400 |
|
||||
@@ -5,6 +5,6 @@
|
||||
|
||||
| Field | Type | Required | Description | Example |
|
||||
| ------------------------------- | ------------------------------- | ------------------------------- | ------------------------------- | ------------------------------- |
|
||||
| `code` | *Optional<Long>* | :heavy_minus_sign: | N/A | 1001 |
|
||||
| `code` | *Optional<Integer>* | :heavy_minus_sign: | N/A | 1001 |
|
||||
| `message` | *Optional<String>* | :heavy_minus_sign: | N/A | User could not be authenticated |
|
||||
| `status` | *Optional<Long>* | :heavy_minus_sign: | N/A | 401 |
|
||||
| `status` | *Optional<Integer>* | :heavy_minus_sign: | N/A | 401 |
|
||||
@@ -5,6 +5,6 @@
|
||||
|
||||
| Field | Type | Required | Description | Example |
|
||||
| ----------------------------------- | ----------------------------------- | ----------------------------------- | ----------------------------------- | ----------------------------------- |
|
||||
| `code` | *Optional<Long>* | :heavy_minus_sign: | N/A | 1000 |
|
||||
| `code` | *Optional<Integer>* | :heavy_minus_sign: | N/A | 1000 |
|
||||
| `message` | *Optional<String>* | :heavy_minus_sign: | N/A | X-Plex-Client-Identifier is missing |
|
||||
| `status` | *Optional<Long>* | :heavy_minus_sign: | N/A | 400 |
|
||||
| `status` | *Optional<Integer>* | :heavy_minus_sign: | N/A | 400 |
|
||||
@@ -5,6 +5,6 @@
|
||||
|
||||
| Field | Type | Required | Description | Example |
|
||||
| ------------------------------- | ------------------------------- | ------------------------------- | ------------------------------- | ------------------------------- |
|
||||
| `code` | *Optional<Long>* | :heavy_minus_sign: | N/A | 1001 |
|
||||
| `code` | *Optional<Integer>* | :heavy_minus_sign: | N/A | 1001 |
|
||||
| `message` | *Optional<String>* | :heavy_minus_sign: | N/A | User could not be authenticated |
|
||||
| `status` | *Optional<Long>* | :heavy_minus_sign: | N/A | 401 |
|
||||
| `status` | *Optional<Integer>* | :heavy_minus_sign: | N/A | 401 |
|
||||
@@ -5,6 +5,6 @@
|
||||
|
||||
| Field | Type | Required | Description | Example |
|
||||
| ----------------------------------- | ----------------------------------- | ----------------------------------- | ----------------------------------- | ----------------------------------- |
|
||||
| `code` | *Optional<Long>* | :heavy_minus_sign: | N/A | 1000 |
|
||||
| `code` | *Optional<Integer>* | :heavy_minus_sign: | N/A | 1000 |
|
||||
| `message` | *Optional<String>* | :heavy_minus_sign: | N/A | X-Plex-Client-Identifier is missing |
|
||||
| `status` | *Optional<Long>* | :heavy_minus_sign: | N/A | 400 |
|
||||
| `status` | *Optional<Integer>* | :heavy_minus_sign: | N/A | 400 |
|
||||
@@ -5,6 +5,6 @@
|
||||
|
||||
| Field | Type | Required | Description | Example |
|
||||
| ------------------------------- | ------------------------------- | ------------------------------- | ------------------------------- | ------------------------------- |
|
||||
| `code` | *Optional<Long>* | :heavy_minus_sign: | N/A | 1001 |
|
||||
| `code` | *Optional<Integer>* | :heavy_minus_sign: | N/A | 1001 |
|
||||
| `message` | *Optional<String>* | :heavy_minus_sign: | N/A | User could not be authenticated |
|
||||
| `status` | *Optional<Long>* | :heavy_minus_sign: | N/A | 401 |
|
||||
| `status` | *Optional<Integer>* | :heavy_minus_sign: | N/A | 401 |
|
||||
@@ -5,6 +5,6 @@
|
||||
|
||||
| Field | Type | Required | Description | Example |
|
||||
| ----------------------------------- | ----------------------------------- | ----------------------------------- | ----------------------------------- | ----------------------------------- |
|
||||
| `code` | *Optional<Long>* | :heavy_minus_sign: | N/A | 1000 |
|
||||
| `code` | *Optional<Integer>* | :heavy_minus_sign: | N/A | 1000 |
|
||||
| `message` | *Optional<String>* | :heavy_minus_sign: | N/A | X-Plex-Client-Identifier is missing |
|
||||
| `status` | *Optional<Long>* | :heavy_minus_sign: | N/A | 400 |
|
||||
| `status` | *Optional<Integer>* | :heavy_minus_sign: | N/A | 400 |
|
||||
@@ -5,6 +5,6 @@
|
||||
|
||||
| Field | Type | Required | Description | Example |
|
||||
| ------------------------------- | ------------------------------- | ------------------------------- | ------------------------------- | ------------------------------- |
|
||||
| `code` | *Optional<Long>* | :heavy_minus_sign: | N/A | 1001 |
|
||||
| `code` | *Optional<Integer>* | :heavy_minus_sign: | N/A | 1001 |
|
||||
| `message` | *Optional<String>* | :heavy_minus_sign: | N/A | User could not be authenticated |
|
||||
| `status` | *Optional<Long>* | :heavy_minus_sign: | N/A | 401 |
|
||||
| `status` | *Optional<Integer>* | :heavy_minus_sign: | N/A | 401 |
|
||||
@@ -5,6 +5,6 @@
|
||||
|
||||
| Field | Type | Required | Description | Example |
|
||||
| ----------------------------------- | ----------------------------------- | ----------------------------------- | ----------------------------------- | ----------------------------------- |
|
||||
| `code` | *Optional<Long>* | :heavy_minus_sign: | N/A | 1000 |
|
||||
| `code` | *Optional<Integer>* | :heavy_minus_sign: | N/A | 1000 |
|
||||
| `message` | *Optional<String>* | :heavy_minus_sign: | N/A | X-Plex-Client-Identifier is missing |
|
||||
| `status` | *Optional<Long>* | :heavy_minus_sign: | N/A | 400 |
|
||||
| `status` | *Optional<Integer>* | :heavy_minus_sign: | N/A | 400 |
|
||||
@@ -5,6 +5,6 @@
|
||||
|
||||
| Field | Type | Required | Description | Example |
|
||||
| ------------------------------- | ------------------------------- | ------------------------------- | ------------------------------- | ------------------------------- |
|
||||
| `code` | *Optional<Long>* | :heavy_minus_sign: | N/A | 1001 |
|
||||
| `code` | *Optional<Integer>* | :heavy_minus_sign: | N/A | 1001 |
|
||||
| `message` | *Optional<String>* | :heavy_minus_sign: | N/A | User could not be authenticated |
|
||||
| `status` | *Optional<Long>* | :heavy_minus_sign: | N/A | 401 |
|
||||
| `status` | *Optional<Integer>* | :heavy_minus_sign: | N/A | 401 |
|
||||
@@ -5,6 +5,6 @@
|
||||
|
||||
| Field | Type | Required | Description | Example |
|
||||
| ----------------------------------- | ----------------------------------- | ----------------------------------- | ----------------------------------- | ----------------------------------- |
|
||||
| `code` | *Optional<Long>* | :heavy_minus_sign: | N/A | 1000 |
|
||||
| `code` | *Optional<Integer>* | :heavy_minus_sign: | N/A | 1000 |
|
||||
| `message` | *Optional<String>* | :heavy_minus_sign: | N/A | X-Plex-Client-Identifier is missing |
|
||||
| `status` | *Optional<Long>* | :heavy_minus_sign: | N/A | 400 |
|
||||
| `status` | *Optional<Integer>* | :heavy_minus_sign: | N/A | 400 |
|
||||
@@ -5,6 +5,6 @@
|
||||
|
||||
| Field | Type | Required | Description | Example |
|
||||
| ------------------------------- | ------------------------------- | ------------------------------- | ------------------------------- | ------------------------------- |
|
||||
| `code` | *Optional<Long>* | :heavy_minus_sign: | N/A | 1001 |
|
||||
| `code` | *Optional<Integer>* | :heavy_minus_sign: | N/A | 1001 |
|
||||
| `message` | *Optional<String>* | :heavy_minus_sign: | N/A | User could not be authenticated |
|
||||
| `status` | *Optional<Long>* | :heavy_minus_sign: | N/A | 401 |
|
||||
| `status` | *Optional<Integer>* | :heavy_minus_sign: | N/A | 401 |
|
||||
@@ -5,6 +5,6 @@
|
||||
|
||||
| Field | Type | Required | Description | Example |
|
||||
| ----------------------------------- | ----------------------------------- | ----------------------------------- | ----------------------------------- | ----------------------------------- |
|
||||
| `code` | *Optional<Long>* | :heavy_minus_sign: | N/A | 1000 |
|
||||
| `code` | *Optional<Integer>* | :heavy_minus_sign: | N/A | 1000 |
|
||||
| `message` | *Optional<String>* | :heavy_minus_sign: | N/A | X-Plex-Client-Identifier is missing |
|
||||
| `status` | *Optional<Long>* | :heavy_minus_sign: | N/A | 400 |
|
||||
| `status` | *Optional<Integer>* | :heavy_minus_sign: | N/A | 400 |
|
||||
@@ -5,6 +5,6 @@
|
||||
|
||||
| Field | Type | Required | Description | Example |
|
||||
| ----------------------------------- | ----------------------------------- | ----------------------------------- | ----------------------------------- | ----------------------------------- |
|
||||
| `code` | *Optional<Long>* | :heavy_minus_sign: | N/A | 1000 |
|
||||
| `code` | *Optional<Integer>* | :heavy_minus_sign: | N/A | 1000 |
|
||||
| `message` | *Optional<String>* | :heavy_minus_sign: | N/A | X-Plex-Client-Identifier is missing |
|
||||
| `status` | *Optional<Long>* | :heavy_minus_sign: | N/A | 400 |
|
||||
| `status` | *Optional<Integer>* | :heavy_minus_sign: | N/A | 400 |
|
||||
@@ -5,6 +5,6 @@
|
||||
|
||||
| Field | Type | Required | Description | Example |
|
||||
| ------------------------------- | ------------------------------- | ------------------------------- | ------------------------------- | ------------------------------- |
|
||||
| `code` | *Optional<Long>* | :heavy_minus_sign: | N/A | 1001 |
|
||||
| `code` | *Optional<Integer>* | :heavy_minus_sign: | N/A | 1001 |
|
||||
| `message` | *Optional<String>* | :heavy_minus_sign: | N/A | User could not be authenticated |
|
||||
| `status` | *Optional<Long>* | :heavy_minus_sign: | N/A | 401 |
|
||||
| `status` | *Optional<Integer>* | :heavy_minus_sign: | N/A | 401 |
|
||||
@@ -5,6 +5,6 @@
|
||||
|
||||
| Field | Type | Required | Description | Example |
|
||||
| ----------------------------------- | ----------------------------------- | ----------------------------------- | ----------------------------------- | ----------------------------------- |
|
||||
| `code` | *Optional<Long>* | :heavy_minus_sign: | N/A | 1000 |
|
||||
| `code` | *Optional<Integer>* | :heavy_minus_sign: | N/A | 1000 |
|
||||
| `message` | *Optional<String>* | :heavy_minus_sign: | N/A | X-Plex-Client-Identifier is missing |
|
||||
| `status` | *Optional<Long>* | :heavy_minus_sign: | N/A | 400 |
|
||||
| `status` | *Optional<Integer>* | :heavy_minus_sign: | N/A | 400 |
|
||||
@@ -5,6 +5,6 @@
|
||||
|
||||
| Field | Type | Required | Description | Example |
|
||||
| ------------------------------- | ------------------------------- | ------------------------------- | ------------------------------- | ------------------------------- |
|
||||
| `code` | *Optional<Long>* | :heavy_minus_sign: | N/A | 1001 |
|
||||
| `code` | *Optional<Integer>* | :heavy_minus_sign: | N/A | 1001 |
|
||||
| `message` | *Optional<String>* | :heavy_minus_sign: | N/A | User could not be authenticated |
|
||||
| `status` | *Optional<Long>* | :heavy_minus_sign: | N/A | 401 |
|
||||
| `status` | *Optional<Integer>* | :heavy_minus_sign: | N/A | 401 |
|
||||
@@ -5,6 +5,6 @@
|
||||
|
||||
| Field | Type | Required | Description | Example |
|
||||
| ----------------------------------- | ----------------------------------- | ----------------------------------- | ----------------------------------- | ----------------------------------- |
|
||||
| `code` | *Optional<Long>* | :heavy_minus_sign: | N/A | 1000 |
|
||||
| `code` | *Optional<Integer>* | :heavy_minus_sign: | N/A | 1000 |
|
||||
| `message` | *Optional<String>* | :heavy_minus_sign: | N/A | X-Plex-Client-Identifier is missing |
|
||||
| `status` | *Optional<Long>* | :heavy_minus_sign: | N/A | 400 |
|
||||
| `status` | *Optional<Integer>* | :heavy_minus_sign: | N/A | 400 |
|
||||
@@ -5,6 +5,6 @@
|
||||
|
||||
| Field | Type | Required | Description | Example |
|
||||
| ------------------------------- | ------------------------------- | ------------------------------- | ------------------------------- | ------------------------------- |
|
||||
| `code` | *Optional<Long>* | :heavy_minus_sign: | N/A | 1001 |
|
||||
| `code` | *Optional<Integer>* | :heavy_minus_sign: | N/A | 1001 |
|
||||
| `message` | *Optional<String>* | :heavy_minus_sign: | N/A | User could not be authenticated |
|
||||
| `status` | *Optional<Long>* | :heavy_minus_sign: | N/A | 401 |
|
||||
| `status` | *Optional<Integer>* | :heavy_minus_sign: | N/A | 401 |
|
||||
@@ -1,10 +0,0 @@
|
||||
# GetRecentlyAddedErrors
|
||||
|
||||
|
||||
## Fields
|
||||
|
||||
| Field | Type | Required | Description | Example |
|
||||
| ----------------------------------- | ----------------------------------- | ----------------------------------- | ----------------------------------- | ----------------------------------- |
|
||||
| `code` | *Optional<Long>* | :heavy_minus_sign: | N/A | 1000 |
|
||||
| `message` | *Optional<String>* | :heavy_minus_sign: | N/A | X-Plex-Client-Identifier is missing |
|
||||
| `status` | *Optional<Long>* | :heavy_minus_sign: | N/A | 400 |
|
||||
@@ -1,6 +1,6 @@
|
||||
# GetRecentlyAddedUnauthorized
|
||||
# GetRecentlyAddedLibraryBadRequest
|
||||
|
||||
Unauthorized - Returned if the X-Plex-Token is missing from the header or query.
|
||||
Bad Request - A parameter was not specified, or was specified incorrectly.
|
||||
|
||||
|
||||
## Fields
|
||||
@@ -3,8 +3,8 @@
|
||||
|
||||
## Fields
|
||||
|
||||
| Field | Type | Required | Description | Example |
|
||||
| ------------------------------- | ------------------------------- | ------------------------------- | ------------------------------- | ------------------------------- |
|
||||
| `code` | *Optional<Long>* | :heavy_minus_sign: | N/A | 1001 |
|
||||
| `message` | *Optional<String>* | :heavy_minus_sign: | N/A | User could not be authenticated |
|
||||
| `status` | *Optional<Long>* | :heavy_minus_sign: | N/A | 401 |
|
||||
| Field | Type | Required | Description | Example |
|
||||
| ----------------------------------- | ----------------------------------- | ----------------------------------- | ----------------------------------- | ----------------------------------- |
|
||||
| `code` | *Optional<Integer>* | :heavy_minus_sign: | N/A | 1000 |
|
||||
| `message` | *Optional<String>* | :heavy_minus_sign: | N/A | X-Plex-Client-Identifier is missing |
|
||||
| `status` | *Optional<Integer>* | :heavy_minus_sign: | N/A | 400 |
|
||||
10
docs/models/errors/GetRecentlyAddedLibraryLibraryErrors.md
Normal file
10
docs/models/errors/GetRecentlyAddedLibraryLibraryErrors.md
Normal file
@@ -0,0 +1,10 @@
|
||||
# GetRecentlyAddedLibraryLibraryErrors
|
||||
|
||||
|
||||
## Fields
|
||||
|
||||
| Field | Type | Required | Description | Example |
|
||||
| ------------------------------- | ------------------------------- | ------------------------------- | ------------------------------- | ------------------------------- |
|
||||
| `code` | *Optional<Integer>* | :heavy_minus_sign: | N/A | 1001 |
|
||||
| `message` | *Optional<String>* | :heavy_minus_sign: | N/A | User could not be authenticated |
|
||||
| `status` | *Optional<Integer>* | :heavy_minus_sign: | N/A | 401 |
|
||||
@@ -1,11 +1,11 @@
|
||||
# GetRecentlyAddedBadRequest
|
||||
# GetRecentlyAddedLibraryUnauthorized
|
||||
|
||||
Bad Request - A parameter was not specified, or was specified incorrectly.
|
||||
Unauthorized - Returned if the X-Plex-Token is missing from the header or query.
|
||||
|
||||
|
||||
## Fields
|
||||
|
||||
| Field | Type | Required | Description |
|
||||
| ----------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------- |
|
||||
| `errors` | List<[GetRecentlyAddedErrors](../../models/errors/GetRecentlyAddedErrors.md)> | :heavy_minus_sign: | N/A |
|
||||
| `errors` | List<[GetRecentlyAddedLibraryLibraryErrors](../../models/errors/GetRecentlyAddedLibraryLibraryErrors.md)> | :heavy_minus_sign: | N/A |
|
||||
| `rawResponse` | [HttpResponse<InputStream>](https://docs.oracle.com/en/java/javase/11/docs/api/java.net.http/java/net/http/HttpResponse.html) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing |
|
||||
@@ -5,6 +5,6 @@
|
||||
|
||||
| Field | Type | Required | Description | Example |
|
||||
| ----------------------------------- | ----------------------------------- | ----------------------------------- | ----------------------------------- | ----------------------------------- |
|
||||
| `code` | *Optional<Long>* | :heavy_minus_sign: | N/A | 1000 |
|
||||
| `code` | *Optional<Integer>* | :heavy_minus_sign: | N/A | 1000 |
|
||||
| `message` | *Optional<String>* | :heavy_minus_sign: | N/A | X-Plex-Client-Identifier is missing |
|
||||
| `status` | *Optional<Long>* | :heavy_minus_sign: | N/A | 400 |
|
||||
| `status` | *Optional<Integer>* | :heavy_minus_sign: | N/A | 400 |
|
||||
@@ -5,6 +5,6 @@
|
||||
|
||||
| Field | Type | Required | Description | Example |
|
||||
| ------------------------------- | ------------------------------- | ------------------------------- | ------------------------------- | ------------------------------- |
|
||||
| `code` | *Optional<Long>* | :heavy_minus_sign: | N/A | 1001 |
|
||||
| `code` | *Optional<Integer>* | :heavy_minus_sign: | N/A | 1001 |
|
||||
| `message` | *Optional<String>* | :heavy_minus_sign: | N/A | User could not be authenticated |
|
||||
| `status` | *Optional<Long>* | :heavy_minus_sign: | N/A | 401 |
|
||||
| `status` | *Optional<Integer>* | :heavy_minus_sign: | N/A | 401 |
|
||||
@@ -5,6 +5,6 @@
|
||||
|
||||
| Field | Type | Required | Description | Example |
|
||||
| ----------------------------------- | ----------------------------------- | ----------------------------------- | ----------------------------------- | ----------------------------------- |
|
||||
| `code` | *Optional<Long>* | :heavy_minus_sign: | N/A | 1000 |
|
||||
| `code` | *Optional<Integer>* | :heavy_minus_sign: | N/A | 1000 |
|
||||
| `message` | *Optional<String>* | :heavy_minus_sign: | N/A | X-Plex-Client-Identifier is missing |
|
||||
| `status` | *Optional<Long>* | :heavy_minus_sign: | N/A | 400 |
|
||||
| `status` | *Optional<Integer>* | :heavy_minus_sign: | N/A | 400 |
|
||||
@@ -5,6 +5,6 @@
|
||||
|
||||
| Field | Type | Required | Description | Example |
|
||||
| ------------------------------- | ------------------------------- | ------------------------------- | ------------------------------- | ------------------------------- |
|
||||
| `code` | *Optional<Long>* | :heavy_minus_sign: | N/A | 1001 |
|
||||
| `code` | *Optional<Integer>* | :heavy_minus_sign: | N/A | 1001 |
|
||||
| `message` | *Optional<String>* | :heavy_minus_sign: | N/A | User could not be authenticated |
|
||||
| `status` | *Optional<Long>* | :heavy_minus_sign: | N/A | 401 |
|
||||
| `status` | *Optional<Integer>* | :heavy_minus_sign: | N/A | 401 |
|
||||
@@ -5,6 +5,6 @@
|
||||
|
||||
| Field | Type | Required | Description | Example |
|
||||
| ----------------------------------- | ----------------------------------- | ----------------------------------- | ----------------------------------- | ----------------------------------- |
|
||||
| `code` | *Optional<Long>* | :heavy_minus_sign: | N/A | 1000 |
|
||||
| `code` | *Optional<Integer>* | :heavy_minus_sign: | N/A | 1000 |
|
||||
| `message` | *Optional<String>* | :heavy_minus_sign: | N/A | X-Plex-Client-Identifier is missing |
|
||||
| `status` | *Optional<Long>* | :heavy_minus_sign: | N/A | 400 |
|
||||
| `status` | *Optional<Integer>* | :heavy_minus_sign: | N/A | 400 |
|
||||
@@ -5,6 +5,6 @@
|
||||
|
||||
| Field | Type | Required | Description | Example |
|
||||
| ------------------------------- | ------------------------------- | ------------------------------- | ------------------------------- | ------------------------------- |
|
||||
| `code` | *Optional<Long>* | :heavy_minus_sign: | N/A | 1001 |
|
||||
| `code` | *Optional<Integer>* | :heavy_minus_sign: | N/A | 1001 |
|
||||
| `message` | *Optional<String>* | :heavy_minus_sign: | N/A | User could not be authenticated |
|
||||
| `status` | *Optional<Long>* | :heavy_minus_sign: | N/A | 401 |
|
||||
| `status` | *Optional<Integer>* | :heavy_minus_sign: | N/A | 401 |
|
||||
@@ -5,6 +5,6 @@
|
||||
|
||||
| Field | Type | Required | Description | Example |
|
||||
| ----------------------------------- | ----------------------------------- | ----------------------------------- | ----------------------------------- | ----------------------------------- |
|
||||
| `code` | *Optional<Long>* | :heavy_minus_sign: | N/A | 1000 |
|
||||
| `code` | *Optional<Integer>* | :heavy_minus_sign: | N/A | 1000 |
|
||||
| `message` | *Optional<String>* | :heavy_minus_sign: | N/A | X-Plex-Client-Identifier is missing |
|
||||
| `status` | *Optional<Long>* | :heavy_minus_sign: | N/A | 400 |
|
||||
| `status` | *Optional<Integer>* | :heavy_minus_sign: | N/A | 400 |
|
||||
@@ -5,6 +5,6 @@
|
||||
|
||||
| Field | Type | Required | Description | Example |
|
||||
| ------------------------------- | ------------------------------- | ------------------------------- | ------------------------------- | ------------------------------- |
|
||||
| `code` | *Optional<Long>* | :heavy_minus_sign: | N/A | 1001 |
|
||||
| `code` | *Optional<Integer>* | :heavy_minus_sign: | N/A | 1001 |
|
||||
| `message` | *Optional<String>* | :heavy_minus_sign: | N/A | User could not be authenticated |
|
||||
| `status` | *Optional<Long>* | :heavy_minus_sign: | N/A | 401 |
|
||||
| `status` | *Optional<Integer>* | :heavy_minus_sign: | N/A | 401 |
|
||||
@@ -5,6 +5,6 @@
|
||||
|
||||
| Field | Type | Required | Description | Example |
|
||||
| ----------------------------------- | ----------------------------------- | ----------------------------------- | ----------------------------------- | ----------------------------------- |
|
||||
| `code` | *Optional<Long>* | :heavy_minus_sign: | N/A | 1000 |
|
||||
| `code` | *Optional<Integer>* | :heavy_minus_sign: | N/A | 1000 |
|
||||
| `message` | *Optional<String>* | :heavy_minus_sign: | N/A | X-Plex-Client-Identifier is missing |
|
||||
| `status` | *Optional<Long>* | :heavy_minus_sign: | N/A | 400 |
|
||||
| `status` | *Optional<Integer>* | :heavy_minus_sign: | N/A | 400 |
|
||||
@@ -5,6 +5,6 @@
|
||||
|
||||
| Field | Type | Required | Description | Example |
|
||||
| ------------------------------- | ------------------------------- | ------------------------------- | ------------------------------- | ------------------------------- |
|
||||
| `code` | *Optional<Long>* | :heavy_minus_sign: | N/A | 1001 |
|
||||
| `code` | *Optional<Integer>* | :heavy_minus_sign: | N/A | 1001 |
|
||||
| `message` | *Optional<String>* | :heavy_minus_sign: | N/A | User could not be authenticated |
|
||||
| `status` | *Optional<Long>* | :heavy_minus_sign: | N/A | 401 |
|
||||
| `status` | *Optional<Integer>* | :heavy_minus_sign: | N/A | 401 |
|
||||
@@ -5,6 +5,6 @@
|
||||
|
||||
| Field | Type | Required | Description | Example |
|
||||
| ------------------------------- | ------------------------------- | ------------------------------- | ------------------------------- | ------------------------------- |
|
||||
| `code` | *Optional<Long>* | :heavy_minus_sign: | N/A | 1001 |
|
||||
| `code` | *Optional<Integer>* | :heavy_minus_sign: | N/A | 1001 |
|
||||
| `message` | *Optional<String>* | :heavy_minus_sign: | N/A | User could not be authenticated |
|
||||
| `status` | *Optional<Long>* | :heavy_minus_sign: | N/A | 401 |
|
||||
| `status` | *Optional<Integer>* | :heavy_minus_sign: | N/A | 401 |
|
||||
@@ -5,6 +5,6 @@
|
||||
|
||||
| Field | Type | Required | Description | Example |
|
||||
| ----------------------------------- | ----------------------------------- | ----------------------------------- | ----------------------------------- | ----------------------------------- |
|
||||
| `code` | *Optional<Long>* | :heavy_minus_sign: | N/A | 1000 |
|
||||
| `code` | *Optional<Integer>* | :heavy_minus_sign: | N/A | 1000 |
|
||||
| `message` | *Optional<String>* | :heavy_minus_sign: | N/A | X-Plex-Client-Identifier is missing |
|
||||
| `status` | *Optional<Long>* | :heavy_minus_sign: | N/A | 400 |
|
||||
| `status` | *Optional<Integer>* | :heavy_minus_sign: | N/A | 400 |
|
||||
@@ -5,6 +5,6 @@
|
||||
|
||||
| Field | Type | Required | Description | Example |
|
||||
| ------------------------------- | ------------------------------- | ------------------------------- | ------------------------------- | ------------------------------- |
|
||||
| `code` | *Optional<Long>* | :heavy_minus_sign: | N/A | 1001 |
|
||||
| `code` | *Optional<Integer>* | :heavy_minus_sign: | N/A | 1001 |
|
||||
| `message` | *Optional<String>* | :heavy_minus_sign: | N/A | User could not be authenticated |
|
||||
| `status` | *Optional<Long>* | :heavy_minus_sign: | N/A | 401 |
|
||||
| `status` | *Optional<Integer>* | :heavy_minus_sign: | N/A | 401 |
|
||||
@@ -7,6 +7,6 @@ Request Timeout
|
||||
|
||||
| Field | Type | Required | Description | Example |
|
||||
| ----------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------- |
|
||||
| `code` | *Optional<Long>* | :heavy_minus_sign: | N/A | 408 |
|
||||
| `code` | *Optional<Integer>* | :heavy_minus_sign: | N/A | 408 |
|
||||
| `message` | *Optional<String>* | :heavy_minus_sign: | N/A | The server timed out waiting for the request. |
|
||||
| `rawResponse` | [HttpResponse<InputStream>](https://docs.oracle.com/en/java/javase/11/docs/api/java.net.http/java/net/http/HttpResponse.html) | :heavy_minus_sign: | Raw HTTP response; suitable for custom response parsing | |
|
||||
@@ -5,6 +5,6 @@
|
||||
|
||||
| Field | Type | Required | Description | Example |
|
||||
| ----------------------------------- | ----------------------------------- | ----------------------------------- | ----------------------------------- | ----------------------------------- |
|
||||
| `code` | *Optional<Long>* | :heavy_minus_sign: | N/A | 1000 |
|
||||
| `code` | *Optional<Integer>* | :heavy_minus_sign: | N/A | 1000 |
|
||||
| `message` | *Optional<String>* | :heavy_minus_sign: | N/A | X-Plex-Client-Identifier is missing |
|
||||
| `status` | *Optional<Long>* | :heavy_minus_sign: | N/A | 400 |
|
||||
| `status` | *Optional<Integer>* | :heavy_minus_sign: | N/A | 400 |
|
||||
@@ -5,6 +5,6 @@
|
||||
|
||||
| Field | Type | Required | Description | Example |
|
||||
| ------------------------------- | ------------------------------- | ------------------------------- | ------------------------------- | ------------------------------- |
|
||||
| `code` | *Optional<Long>* | :heavy_minus_sign: | N/A | 1001 |
|
||||
| `code` | *Optional<Integer>* | :heavy_minus_sign: | N/A | 1001 |
|
||||
| `message` | *Optional<String>* | :heavy_minus_sign: | N/A | User could not be authenticated |
|
||||
| `status` | *Optional<Long>* | :heavy_minus_sign: | N/A | 401 |
|
||||
| `status` | *Optional<Integer>* | :heavy_minus_sign: | N/A | 401 |
|
||||
@@ -5,6 +5,6 @@
|
||||
|
||||
| Field | Type | Required | Description | Example |
|
||||
| ----------------------------------- | ----------------------------------- | ----------------------------------- | ----------------------------------- | ----------------------------------- |
|
||||
| `code` | *Optional<Long>* | :heavy_minus_sign: | N/A | 1000 |
|
||||
| `code` | *Optional<Integer>* | :heavy_minus_sign: | N/A | 1000 |
|
||||
| `message` | *Optional<String>* | :heavy_minus_sign: | N/A | X-Plex-Client-Identifier is missing |
|
||||
| `status` | *Optional<Long>* | :heavy_minus_sign: | N/A | 400 |
|
||||
| `status` | *Optional<Integer>* | :heavy_minus_sign: | N/A | 400 |
|
||||
@@ -5,6 +5,6 @@
|
||||
|
||||
| Field | Type | Required | Description | Example |
|
||||
| ------------------------------- | ------------------------------- | ------------------------------- | ------------------------------- | ------------------------------- |
|
||||
| `code` | *Optional<Long>* | :heavy_minus_sign: | N/A | 1001 |
|
||||
| `code` | *Optional<Integer>* | :heavy_minus_sign: | N/A | 1001 |
|
||||
| `message` | *Optional<String>* | :heavy_minus_sign: | N/A | User could not be authenticated |
|
||||
| `status` | *Optional<Long>* | :heavy_minus_sign: | N/A | 401 |
|
||||
| `status` | *Optional<Integer>* | :heavy_minus_sign: | N/A | 401 |
|
||||
@@ -5,6 +5,6 @@
|
||||
|
||||
| Field | Type | Required | Description | Example |
|
||||
| ----------------------------------- | ----------------------------------- | ----------------------------------- | ----------------------------------- | ----------------------------------- |
|
||||
| `code` | *Optional<Long>* | :heavy_minus_sign: | N/A | 1000 |
|
||||
| `code` | *Optional<Integer>* | :heavy_minus_sign: | N/A | 1000 |
|
||||
| `message` | *Optional<String>* | :heavy_minus_sign: | N/A | X-Plex-Client-Identifier is missing |
|
||||
| `status` | *Optional<Long>* | :heavy_minus_sign: | N/A | 400 |
|
||||
| `status` | *Optional<Integer>* | :heavy_minus_sign: | N/A | 400 |
|
||||
@@ -5,6 +5,6 @@
|
||||
|
||||
| Field | Type | Required | Description | Example |
|
||||
| ------------------------------- | ------------------------------- | ------------------------------- | ------------------------------- | ------------------------------- |
|
||||
| `code` | *Optional<Long>* | :heavy_minus_sign: | N/A | 1001 |
|
||||
| `code` | *Optional<Integer>* | :heavy_minus_sign: | N/A | 1001 |
|
||||
| `message` | *Optional<String>* | :heavy_minus_sign: | N/A | User could not be authenticated |
|
||||
| `status` | *Optional<Long>* | :heavy_minus_sign: | N/A | 401 |
|
||||
| `status` | *Optional<Integer>* | :heavy_minus_sign: | N/A | 401 |
|
||||
@@ -5,6 +5,6 @@
|
||||
|
||||
| Field | Type | Required | Description | Example |
|
||||
| ----------------------------------- | ----------------------------------- | ----------------------------------- | ----------------------------------- | ----------------------------------- |
|
||||
| `code` | *Optional<Long>* | :heavy_minus_sign: | N/A | 1000 |
|
||||
| `code` | *Optional<Integer>* | :heavy_minus_sign: | N/A | 1000 |
|
||||
| `message` | *Optional<String>* | :heavy_minus_sign: | N/A | X-Plex-Client-Identifier is missing |
|
||||
| `status` | *Optional<Long>* | :heavy_minus_sign: | N/A | 400 |
|
||||
| `status` | *Optional<Integer>* | :heavy_minus_sign: | N/A | 400 |
|
||||
@@ -5,6 +5,6 @@
|
||||
|
||||
| Field | Type | Required | Description | Example |
|
||||
| ------------------------------- | ------------------------------- | ------------------------------- | ------------------------------- | ------------------------------- |
|
||||
| `code` | *Optional<Long>* | :heavy_minus_sign: | N/A | 1001 |
|
||||
| `code` | *Optional<Integer>* | :heavy_minus_sign: | N/A | 1001 |
|
||||
| `message` | *Optional<String>* | :heavy_minus_sign: | N/A | User could not be authenticated |
|
||||
| `status` | *Optional<Long>* | :heavy_minus_sign: | N/A | 401 |
|
||||
| `status` | *Optional<Integer>* | :heavy_minus_sign: | N/A | 401 |
|
||||
@@ -5,6 +5,6 @@
|
||||
|
||||
| Field | Type | Required | Description | Example |
|
||||
| ----------------------------------- | ----------------------------------- | ----------------------------------- | ----------------------------------- | ----------------------------------- |
|
||||
| `code` | *Optional<Long>* | :heavy_minus_sign: | N/A | 1000 |
|
||||
| `code` | *Optional<Integer>* | :heavy_minus_sign: | N/A | 1000 |
|
||||
| `message` | *Optional<String>* | :heavy_minus_sign: | N/A | X-Plex-Client-Identifier is missing |
|
||||
| `status` | *Optional<Long>* | :heavy_minus_sign: | N/A | 400 |
|
||||
| `status` | *Optional<Integer>* | :heavy_minus_sign: | N/A | 400 |
|
||||
@@ -5,6 +5,6 @@
|
||||
|
||||
| Field | Type | Required | Description | Example |
|
||||
| ------------------------------- | ------------------------------- | ------------------------------- | ------------------------------- | ------------------------------- |
|
||||
| `code` | *Optional<Long>* | :heavy_minus_sign: | N/A | 1001 |
|
||||
| `code` | *Optional<Integer>* | :heavy_minus_sign: | N/A | 1001 |
|
||||
| `message` | *Optional<String>* | :heavy_minus_sign: | N/A | User could not be authenticated |
|
||||
| `status` | *Optional<Long>* | :heavy_minus_sign: | N/A | 401 |
|
||||
| `status` | *Optional<Integer>* | :heavy_minus_sign: | N/A | 401 |
|
||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user