- Overview
- Authentication
- Errors
- Images
- Advanced Ratings
- Scrobbling vs. Checkins
- Syncing with trakt
-
Account
-
Activity
-
Calendar
-
Comment
-
Genres
-
Lists
-
Movie
-
Movies
-
Network
-
Rate
-
Recommendations
-
Search
-
Server
-
Show
- show/cancelcheckin
- show/cancelwatching
- show/checkin
- show/comments
- show/episode/comments
- show/episode/library
- show/episode/seen
- show/episode/summary
- show/episode/unlibrary
- show/episode/unseen
- show/episode/unwatchlist
- show/episode/watchingnow
- show/episode/watchlist
- show/library
- show/related
- show/scrobble
- show/season
- show/season/library
- show/season/seen
- show/seasons
- show/seen
- show/summary
- show/unlibrary
- show/unwatchlist
- show/watching
- show/watchingnow
- show/watchlist
-
Shows
-
User
- user/calendar/shows
- user/lastactivity
- user/library/movies/all
- user/library/movies/collection
- user/library/movies/watched
- user/library/shows/all
- user/library/shows/collection
- user/library/shows/watched
- user/list
- user/lists
- user/network/followers
- user/network/following
- user/network/friends
- user/profile
- user/progress/collected
- user/progress/watched
- user/ratings/episodes
- user/ratings/movies
- user/ratings/shows
- user/watching
- user/watchlist/episodes
- user/watchlist/movies
- user/watchlist/shows
-
Deprecated
- friends/add
- friends/all
- friends/approve
- friends/delete
- friends/deny
- friends/requests
- movie/shouts
- shout/episode
- shout/movie
- shout/show
- show/episode/shouts
- show/shouts
- user/friends
- user/library/movies/hated
- user/library/movies/loved
- user/library/shows/hated
- user/library/shows/loved
- user/watched
- user/watched/episodes
- user/watched/movies
Summary
Update a custom list.
URL
http://api.trakt.tv/lists/update/apikey
Supported formats
json
Supported request methods
POST
Requires authentication
true (details)
Required Parameters
-
apikey
Sign in to view your API key.
-
JSON POST
-
username
trakt username.
-
password
SHA1 hash of trakt password.
-
slug
Slug to identify what list is being updated.
-
name (optional)
The list name. This must be unique.
-
description (optional)
Optional but recommended description of what the list contains.
-
privacy (optional)
Privacy level, set it to private, friends, or public.
-
show_numbers (optional)
The list should show numbers for each item. This is useful for ranked lists. Set it to true or false.
-
allow_shouts (optional)
The list allows discussion by users who have access. Set it to true or false.
-
Example JSON POST
{
"username": "username",
"password": "sha1hash",
"slug": "top-10-of-2011",
"name": "Top 20 of 2011",
"privacy": "friends",
"show_numbers": true,
"allow_shouts": true
}Example Response
{
"status": "success",
"message": "list updated",
"name": "Top 20 of 2011",
"slug": "top-20-of-2011",
"privacy": "friends",
"show_numbers": true,
"allow_shouts": true
}



