[go: up one dir, main page]

Skip to content

Latest commit

 

History

History
195 lines (134 loc) · 14.8 KB

README.md

File metadata and controls

195 lines (134 loc) · 14.8 KB

Sessions

(sessions)

Overview

API Calls that perform search operations with Plex Media Server Sessions

Available Operations

get_sessions

This will retrieve the "Now Playing" Information of the PMS.

Example Usage

from plex_api_client import PlexAPI

s = PlexAPI(
    access_token="<YOUR_API_KEY_HERE>",
    client_id="gcgzw5rz2xovp84b4vha3a40",
    client_name="Plex Web",
    client_version="4.133.0",
    client_platform="Chrome",
    device_name="Linux",
)

res = s.sessions.get_sessions()

if res.object is not None:
    # handle response
    pass

Parameters

Parameter Type Required Description
retries Optional[utils.RetryConfig] Configuration to override the default retry behavior of the client.

Response

operations.GetSessionsResponse

Errors

Error Type Status Code Content Type
errors.GetSessionsBadRequest 400 application/json
errors.GetSessionsUnauthorized 401 application/json
errors.SDKError 4XX, 5XX */*

get_session_history

This will Retrieve a listing of all history views.

Example Usage

from plex_api_client import PlexAPI

s = PlexAPI(
    access_token="<YOUR_API_KEY_HERE>",
    client_id="gcgzw5rz2xovp84b4vha3a40",
    client_name="Plex Web",
    client_version="4.133.0",
    client_platform="Chrome",
    device_name="Linux",
)

res = s.sessions.get_session_history(sort="viewedAt:desc", account_id=1, filter_={}, library_section_id=12)

if res.object is not None:
    # handle response
    pass

Parameters

Parameter Type Required Description Example
sort Optional[str] Sorts the results by the specified field followed by the direction (asc, desc)
account_id Optional[int] Filter results by those that are related to a specific users id
1
filter_ Optional[operations.QueryParamFilter] Filters content by field and direction/equality
(Unknown if viewedAt is the only supported column)
{
"viewed-at-greater-than": {
"value": "viewedAt\u003e"
},
"viewed-at-greater-than-or-equal-to": {
"value": "viewedAt\u003e=\u003e"
},
"viewed-at-less-than": {
"value": "viewedAt\u003c"
}
}
library_section_id Optional[int] Filters the results based on the id of a valid library section
12
retries Optional[utils.RetryConfig] Configuration to override the default retry behavior of the client.

Response

operations.GetSessionHistoryResponse

Errors

Error Type Status Code Content Type
errors.GetSessionHistoryBadRequest 400 application/json
errors.GetSessionHistoryUnauthorized 401 application/json
errors.SDKError 4XX, 5XX */*

get_transcode_sessions

Get Transcode Sessions

Example Usage

from plex_api_client import PlexAPI

s = PlexAPI(
    access_token="<YOUR_API_KEY_HERE>",
    client_id="gcgzw5rz2xovp84b4vha3a40",
    client_name="Plex Web",
    client_version="4.133.0",
    client_platform="Chrome",
    device_name="Linux",
)

res = s.sessions.get_transcode_sessions()

if res.object is not None:
    # handle response
    pass

Parameters

Parameter Type Required Description
retries Optional[utils.RetryConfig] Configuration to override the default retry behavior of the client.

Response

operations.GetTranscodeSessionsResponse

Errors

Error Type Status Code Content Type
errors.GetTranscodeSessionsBadRequest 400 application/json
errors.GetTranscodeSessionsUnauthorized 401 application/json
errors.SDKError 4XX, 5XX */*

stop_transcode_session

Stop a Transcode Session

Example Usage

from plex_api_client import PlexAPI

s = PlexAPI(
    access_token="<YOUR_API_KEY_HERE>",
    client_id="gcgzw5rz2xovp84b4vha3a40",
    client_name="Plex Web",
    client_version="4.133.0",
    client_platform="Chrome",
    device_name="Linux",
)

res = s.sessions.stop_transcode_session(session_key="zz7llzqlx8w9vnrsbnwhbmep")

if res is not None:
    # handle response
    pass

Parameters

Parameter Type Required Description Example
session_key str ✔️ the Key of the transcode session to stop zz7llzqlx8w9vnrsbnwhbmep
retries Optional[utils.RetryConfig] Configuration to override the default retry behavior of the client.

Response

operations.StopTranscodeSessionResponse

Errors

Error Type Status Code Content Type
errors.StopTranscodeSessionBadRequest 400 application/json
errors.StopTranscodeSessionUnauthorized 401 application/json
errors.SDKError 4XX, 5XX */*