set_movie_watch_status
Update the watch status of a movie by its ID, allowing you to mark it as watching, cancelled, watch later, or remove from your list.
Instructions
Sets the watch status of a movie by its ID. :param movie_id: The ID of the movie to set the watch status for. :param status: The watch status to set ( "watching" - watching the movie, "cancelled" - stop watching the movie, "later" - the movie to watch later, "remove" - have not watched the movie yet ) :return: A dictionary containing the result of the operation.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
movie_id | Yes | ||
status | Yes |
Input Schema (JSON Schema)
{
"properties": {
"movie_id": {
"title": "Movie Id",
"type": "integer"
},
"status": {
"title": "Status",
"type": "string"
}
},
"required": [
"movie_id",
"status"
],
"type": "object"
}