Skip to main content
POST
/
3
/
list
/
{list_id}
/
remove_item
Remove Movie
curl --request POST \
  --url 'https://api.themoviedb.org/3/list/{{list_id}}/remove_item' \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "media_id": 558449
}
'
{
  "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"

Body

application/json
media_id
number

This represents the media ID. Get it here

Example:

558449

Response

200 - application/json

Remove

status_code
number
Example:

13

status_message
string
Example:

"The item/record was deleted successfully."

success
boolean
Example:

true