POST
/
3
/
tv
/
1399
/
season
/
1
/
episode
/
1
/
rating
curl --request POST \
  --url https://api.themoviedb.org/3/tv/1399/season/1/episode/1/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.

Body

application/json

Response

201 - application/json

New Request

The response is of type object.