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

8504086

Query Parameters

session_id
string
required

Body

application/json
media_id
number
Example:

12

Response

200 - application/json

Remove Movie

status_code
number
Example:

13

status_message
string
Example:

"The item/record was deleted successfully."

success
boolean
Example:

true