get_watch_history
Retrieve playback history from your Plex server to track viewing activity, filter by user account, and manage results with pagination options.
Instructions
Get playback history for the Plex server
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| limit | No | Maximum number of history items to return (default: 20) | |
| account_id | No | Filter by specific account/user ID (optional) | |
| chunk_size | No | Number of items to return per chunk for pagination (optional) | |
| chunk_offset | No | Offset for pagination, number of items to skip (optional) |
Input Schema (JSON Schema)
{
"properties": {
"account_id": {
"description": "Filter by specific account/user ID (optional)",
"type": "string"
},
"chunk_offset": {
"description": "Offset for pagination, number of items to skip (optional)",
"type": "number"
},
"chunk_size": {
"description": "Number of items to return per chunk for pagination (optional)",
"type": "number"
},
"limit": {
"default": 20,
"description": "Maximum number of history items to return (default: 20)",
"type": "number"
}
},
"required": [],
"type": "object"
}