DELETE
/
4
/
list
/
{list_id}
curl --request DELETE \
  --url https://api.themoviedb.org/4/list/{list_id} \
  --header 'Authorization: Bearer <token>'
{
  "status_code": 13,
  "status_message": "The item/record was deleted 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:

8510518

Response

200 - application/json

Delete

status_code
number
Example:

13

status_message
string
Example:

"The item/record was deleted successfully."

success
boolean
Example:

true

Welcome to TMDB API Documentation!
⚠️ This documentation uses the TMDB API but is not endorsed or certified by TMDB.