POST
/
4
/
list
/
{list_id}
/
items
curl --request POST \
  --url https://api.themoviedb.org/4/list/{list_id}/items \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "items": [
    {
      "media_id": 550,
      "media_type": "movie"
    },
    {
      "media_id": 244786,
      "media_type": "movie"
    },
    {
      "media_id": 1396,
      "media_type": "tv"
    }
  ]
}'
{
  "results": [
    {
      "error": [
        "Media has already been taken"
      ],
      "media_id": 550,
      "media_type": "movie",
      "success": false
    }
  ],
  "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

list_id
integer
required

the ID of the custom list

Example:

8510518

Body

application/json

Response

200 - application/json

Add items

The response is of type object.