action britbox_get_item_watched_status { label: "getItemWatchedStatus" description: "Get the watched status info for an item under the active profile." provider: britbox method: GET path: "/account/profile/watched/{itemId}" encoding: json input: { type: "object" properties: { itemId: { type: "string" } } required: ["itemId"] additionalProperties: false } output: { type: "object" required: ["firstWatchedDate", "lastWatchedDate", "position"] properties: { firstWatchedDate: { type: "string" format: "date-time" } isFullyWatched: { type: "boolean" description: "True - if the item is fully watched, False - otherwise." } itemId: { type: "string" description: "The id of the item watched." } lastWatchedDate: { type: "string" format: "date-time" } position: { type: "integer" format: "int32" description: "The last playhead position watched for the item." } } additionalProperties: false } }