Skip to main content
PUT
/
4
/
list
/
{list_id}
Update
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
description
string
Example:

""

name
string
Example:

"My Cool List"

public
boolean
Example:

true

sort_by
string
Example:

"original_order.asc"

Response

201 - application/json

Update

status_code
number
Example:

12

status_message
string
Example:

"The item/record was updated successfully."

success
boolean
Example:

true

I