cURL
curl --request DELETE \ --url 'https://api.themoviedb.org/3/movie/{{movie_id}}/rating' \ --header 'Authorization: Bearer <token>'
{ "status_code": 13, "status_message": "The item/record was deleted successfully.", "success": true }
This endpoint allows you to delete a movie rating.
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Bearer <token>
<token>
This represents the movie ID. Get it here
Delete Rating
13
"The item/record was deleted successfully."
true