curl --request POST \
--url https://api.themoviedb.org/3/account/{account_id}/watchlist \
--header 'Content-Type: application/json' \
--data '
{
"media_type": "movie",
"media_id": 550,
"favorite": true
}
'{
"status_code": 7,
"status_message": "Invalid API key: You must be granted a valid key.",
"success": false
}Mark a movie or TV show as a favourite.
curl --request POST \
--url https://api.themoviedb.org/3/account/{account_id}/watchlist \
--header 'Content-Type: application/json' \
--data '
{
"media_type": "movie",
"media_id": 550,
"favorite": true
}
'{
"status_code": 7,
"status_message": "Invalid API key: You must be granted a valid key.",
"success": false
}