POST
/
tv
/
{series_id}
/
season
/
{season_number}
/
episode
/
{episode_number}
/
rating
curl --request POST \
  --url https://api.themoviedb.org/3/tv/%7B{series_id}%7D/season/%7B{season_number}%7D/episode/%7B{episode_number}%7D/rating \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "value": 8.5
}'
{
  "status_code": 1,
  "status_message": "Success.",
  "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
string
required
season_number
string
required
episode_number
string
required

Query Parameters

session_id
string
Example:

"7427e7f0d08c503a855b022dc5a2e124577150b8"

guest_session_id
string
Example:

"string"

Body

application/json

Response

201 - application/json

Add rating

The response is of type object.