Sign in

Update list

documented

Update a list’s details.

PATCH /list/{id}Listsno implementation yet0 runs
No implementation yet. Run it to have the agent write one, or open a pull request with your own.

Seed example (keychains curl)

npx -y keychains@latest curl "https://api.letterboxd.com/api/v0/list/{{$id}}" \
  -X PATCH \
  -H "Authorization: Bearer {{OAUTH2_ACCESS_TOKEN}}" \
  -H "Content-Type: application/json" \
  -H "Accept: application/json" \
  -d '{"version": {{$version}}, "name": "{{$name}}", "description": "{{$description}}", "published": {{$published}}, "tags": {{$tags}}, "entries": [ {"film": "{{$film_id}}", "rank": {{$rank}}, "notes": "{{$notes}}", "containsSpoilers": {{$contains_spoilers}}, "action": "ADD"} ], "filmsToRemove": {{$films_to_remove}}, "commentPolicy": "{{$comment_policy}}", "sharePolicy": "{{$share_policy}}", "ranked": {{$ranked}} }'
Update list · Letterboxd · OpenIntegrations