POST
/
3
/
list
/
{list_id}
/
clear
curl --request POST \
  --url https://api.themoviedb.org/3/list/{list_id}/clear \
  --header 'Authorization: Bearer <token>'
{
  "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.

Query Parameters

session_id
string
required

A token that represents a logged-in user's session after they have authenticated with their TMDB account.

Example:

""

confirm
enum<string>
required

This confirm if you want to clear all the items in the list.

Example:

"true"

list_id
number
required

This is the unique identifier of the list been created

Example:

""

Response

201 - application/json

clear list

The response is of type object.