ACCOUNT
- Endpoints
AUTHENTICATION
- Endpoints
CERTIFICATIONS
- Endpoints
CHANGES
- Endpoints
COLLECTIONS
- Endpoints
COMPANIES
- Endpoints
CONFIGURATION
- Endpoints
CREDITS
FIND
GENRES
GUEST-SESSIONS
KEYWORDS
MOVIES
PEOPLE
PEOPLE-LISTS
REVIEWS
TV-EPISODE-GROUPS
TV-EPISODES
TV-SEASONS
TV-SERIES
TV-SERIES-LISTS
WATCH-PROVIDERS
TV-SERIES
Delete Rating
This endpoint deletes user ratings for TV series.
DELETE
/
3
/
tv
/
{series_id}
/
rating
Copy
curl --request DELETE \
--url https://api.themoviedb.org/3/tv/%7B{series_id}%7D/rating \
--header 'Authorization: Bearer <token>'
Copy
{
"status_code": 13,
"status_message": "The item/record was deleted successfully.",
"success": true
}
Authorizations
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Path Parameters
Response
200 - application/json
Delete Rating
The response is of type object
.
Copy
curl --request DELETE \
--url https://api.themoviedb.org/3/tv/%7B{series_id}%7D/rating \
--header 'Authorization: Bearer <token>'
Copy
{
"status_code": 13,
"status_message": "The item/record was deleted successfully.",
"success": true
}
Assistant
Responses are generated using AI and may contain mistakes.