TV SERIES
cURL
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 }
This endpoint allow user to rate a TV show and automatically save it to their rated list.
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Bearer <token>
<token>
a uniques identifier for a tv serie
8.5
Add Ratings
12
"The item/record was updated successfully."
true