mirror of
https://github.com/LukeHagar/plexruby.git
synced 2025-12-06 04:20:52 +00:00
8.3 KiB
8.3 KiB
GetLibraryItemsRequest
Fields
| Field | Type | Required | Description | Example |
|---|---|---|---|---|
section_key |
::Integer | ✔️ | The unique key of the Plex library. Note: This is unique in the context of the Plex server. |
9518 |
tag |
::PlexRubySDK::Operations::Tag | ✔️ | A key representing a specific tag within the section. | |
include_guids |
T.nilable(::PlexRubySDK::Operations::IncludeGuids) | ➖ | Adds the Guids object to the response |
1 |
type |
T.nilable(::PlexRubySDK::Operations::GetLibraryItemsQueryParamType) | ➖ | The type of media to retrieve. 1 = movie 2 = show 3 = season 4 = episode E.g. A movie library will not return anything with type 3 as there are no seasons for movie libraries |
2 |
include_meta |
T.nilable(::PlexRubySDK::Operations::GetLibraryItemsQueryParamIncludeMeta) | ➖ | Adds the Meta object to the response |
1 |
x_plex_container_start |
T.nilable(::Integer) | ➖ | The index of the first item to return. If not specified, the first item will be returned. If the number of items exceeds the limit, the response will be paginated. By default this is 0 |
0 |
x_plex_container_size |
T.nilable(::Integer) | ➖ | The number of items to return. If not specified, all items will be returned. If the number of items exceeds the limit, the response will be paginated. By default this is 50 |
50 |