POST
/
3
/
list
/
{list_id}
/
add_item
curl --request POST \
  --url https://api.themoviedb.org/3/list/{list_id}/add_item \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "media_id": 12
}'
{
  "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

list_id
integer
required
Example:

8504086

Query Parameters

session_id
string
required

Body

application/json

Response

201 - application/json

Add Movie

The response is of type object.