DELETE
/
3
/
list
/
{list_id}
curl --request DELETE \
  --url https://api.themoviedb.org/3/list/%7B{list_id}%7D \
  --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
string
required

This represents the list ID. Get it here

Query Parameters

session_id
string

This represents your session id. Get it here

Example:

"a30ca4b889498c1eaeba29bf38bcd439b75f15f7"

Response

200 - application/json

Delete

The response is of type object.