curl --request DELETE \
--url https://api.themoviedb.org/3/tv/%7B{series_id}%7D/season/%7B{season_number}%7D/episode/%7B{episode_number}%7D/rating \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '""'
{
"status_code": 13,
"status_message": "The item/record was deleted successfully.",
"success": true
}
This endpoint allows you to delete your rating on a TV episode.
curl --request DELETE \
--url https://api.themoviedb.org/3/tv/%7B{series_id}%7D/season/%7B{season_number}%7D/episode/%7B{episode_number}%7D/rating \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '""'
{
"status_code": 13,
"status_message": "The item/record was deleted successfully.",
"success": true
}
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
"7427e7f0d08c503a855b022dc5a2e124577150b8"
"string"
The body is of type any
.
Delete rating
The response is of type object
.