uncheck_episode
Mark specific TV show episodes as unwatched using episode IDs. Supports single or batch operations to update your MyShows.me viewing status.
Instructions
Unmarks a specific episode as watched by its ID. Supports both single episode ID and list of episode IDs for batch operations.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
episode_id | Yes |
Input Schema (JSON Schema)
{
"properties": {
"episode_id": {
"anyOf": [
{
"type": "integer"
},
{
"items": {
"type": "integer"
},
"type": "array"
}
],
"title": "Episode Id"
}
},
"required": [
"episode_id"
],
"type": "object"
}