curl --request DELETE \
--url https://api.themoviedb.org/3/movie/%7B{movie_id}%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 a user rating.
curl --request DELETE \
--url https://api.themoviedb.org/3/movie/%7B{movie_id}%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.
"string"
"\"e121864bf4969caf6203ec37c8c86979041c7fcc\""
The body is of type any
.
Delete rating
The response is of type object
.