POST
/
3
/
tv
/
{series_id}
/
rating
curl --request POST \
  --url https://api.themoviedb.org/3/tv/{series_id}/rating \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "value": 8.5
}'
{
  "status_code": 12,
  "status_message": "The item/record was updated successfully.",
  "success": true
}

Authorizations

Authorization
string
header
required

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

Path Parameters

series_id
integer
required

a uniques identifier for a tv serie

Query Parameters

session_id
string
guest_session_id
string

Body

application/json

Response

201 - application/json

Add Ratings

The response is of type object.