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": 18
}'
{
  "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.

Query Parameters

session_id
string

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

Example:

""

list_id
number
required

This is the unique identifier of the list been created

Example:

""

Body

application/json
media_id
number

This is the value that is intended to be removed from the server.

Example:

18

Response

200 - application/json

remove movie

status_code
number

An integer value representing the status of the response. A value of 1 is often used to denote a generic success response.

Example:

13

status_message
string

A string providing a brief indication of the status of the request.

Example:

"The item/record was deleted successfully."

success
boolean

A boolean value indicating whether the request was successful.

Example:

true