DELETE
/
3
/
tv
/
{series_id}
/
rating
curl --request DELETE \
  --url https://api.themoviedb.org/3/tv/{series_id}/rating \
  --header 'Authorization: Bearer <token>'
{
  "status_code": 13,
  "status_message": "The item/record was deleted successfully.",
  "success": true
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Query Parameters

session_id
string

A unique identifier for an authenticated user session. Usually used for user authentication

Example:

"02a0e6d34dbd8325254e83c78918599076a62b0e"

guest_session_id
string

A unique identifier for an authenticated guest user session. Usually used for guest user authentication

Example:

"0145215ad484b24c4b3f2ed0f5b77217"

Response

200 - application/json

Request successful

The response is of type object.