action britbox_delete_watched { label: "deleteWatched" description: "Remove the watched status of items under the active profile. Passing in\nspecific `itemId`s to the `item_ids` query parameter will cause only these\nitems to be removed. **If this list is missing all watched items will be\nremoved**\n" provider: britbox method: DELETE path: "/account/profile/watched" encoding: json input: { type: "object" properties: { item_ids: { type: "array" items: { type: "string" description: "itemId to delete" } } } additionalProperties: false } output: { type: "object" additionalProperties: true } }