LISTS
cURL
curl --request DELETE \ --url https://api.themoviedb.org/4/list/{list_id}/items \ --header 'Authorization: Bearer <token>' \ --header 'Content-Type: application/json' \ --data '{ "items": [ { "media_id": 550, "media_type": "movie" }, { "media_id": 244786, "media_type": "movie" }, { "media_id": 1396, "media_type": "tv" } ] }'
{ "results": [ { "media_id": 550, "media_type": "movie", "success": false }, { "media_id": 244786, "media_type": "movie", "success": false }, { "media_id": 1396, "media_type": "tv", "success": false } ], "status_code": 1, "status_message": "Success.", "success": true }
This endpoint remove items from a list
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Bearer <token>
<token>
the ID of the custom list
8510518
Remove Item
The response is of type object.
object