LISTS
cURL
curl --request PUT \ --url https://api.themoviedb.org/4/list/{list_id} \ --header 'Authorization: Bearer <token>' \ --header 'Content-Type: application/json' \ --data ' { "description": "", "name": "My Cool List", "public": true, "sort_by": "original_order.asc" } '
{ "status_code": 12, "status_message": "The item/record was updated successfully.", "success": true }
This endpoint update the details of a list.
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Bearer <token>
<token>
8510518
""
"My Cool List"
true
"original_order.asc"
Update
12
"The item/record was updated successfully."