PUT
/
4
/
list
/
{list_id}
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
}

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:

8510518

Body

application/json

Response

201 - application/json

Update

The response is of type object.