GET
/
4
/
list
/
{list_id}
/
clear
curl --request GET \
  --url https://api.themoviedb.org/4/list/{list_id}/clear \
  --header 'Authorization: Bearer <token>'
{
  "id": 8504985,
  "items_deleted": 1,
  "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:

8504985

Response

200 - application/json

Clear

The response is of type object.