get_watched_status
Check watch status and playback progress for specific Plex media items to track viewing history and resume positions across your library.
Instructions
Check watch status and progress for specific content items
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| item_keys | Yes | Array of item keys (ratingKey) to check watch status for | |
| account_id | No | Specific account/user ID to check status for (optional) |
Input Schema (JSON Schema)
{
"properties": {
"account_id": {
"description": "Specific account/user ID to check status for (optional)",
"type": "string"
},
"item_keys": {
"description": "Array of item keys (ratingKey) to check watch status for",
"items": {
"type": "string"
},
"type": "array"
}
},
"required": [
"item_keys"
],
"type": "object"
}