POST
/
3
/
account
/
{account_id}
/
favorite
curl --request POST \
  --url https://api.themoviedb.org/3/account/%7B{account_id}%7D/favorite \
  --header 'Content-Type: application/json' \
  --data '{
  "favorite": true,
  "media_id": 912649,
  "media_type": "movie"
}'
{
  "status_code": 1,
  "status_message": "Success.",
  "success": true
}

Path Parameters

account_id
string
required

Body

application/json

Response

201 - application/json

Add favorite

The response is of type object.