get_viewed_episodes
Retrieve watched episodes for a TV show using its MyShows ID to track viewing progress and manage your watchlist.
Instructions
Retrieves the viewed episodes of a TV show by its ID. :param myshows_item_id: The ID of the TV show to retrieve episodes for. :return: A dictionary containing the episodes of the TV show.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
myshows_item_id | Yes |
Input Schema (JSON Schema)
{
"properties": {
"myshows_item_id": {
"title": "Myshows Item Id",
"type": "integer"
}
},
"required": [
"myshows_item_id"
],
"type": "object"
}