POST
/
3
/
account
/
{account_id}
/
watchlist
curl --request POST \
  --url https://api.themoviedb.org/3/account/%7B{account_id}%7D/watchlist \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "media_id": 2288,
  "media_type": "tv",
  "watchlist": true
}'
{
  "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

account_id
string
required

This represents your account ID. Get it here

Query Parameters

session_id
string

This represents your session ID. Get it here

Body

application/json

Response

201 - application/json

Add To Watchlist

The response is of type object.