Remove a movie from a list.
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 }
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Bearer <token>
<token>
Request successful
The response is of type object.
object