v1
latestOpenAPI 3.0.02026-07-14183108402.3 KBSync
Remove items from collection
🔒 OAuth Required
Remove one or more items from a user's collection.
JSON POST Data
| Key | Type | Value |
|---|---|---|
| movies | array | Array of movie objects. (see examples →) |
| shows | array | Array of show objects. |
| seasons | array | Array of season objects. |
| episodes | array | Array of episode objects. |
post/sync/collection/remove
Headers
trakt-api-versionstring
e.g. 2
trakt-api-keystring
e.g. [client_id]
Request body
Example request
{
"episodes": [
{
"ids": {
"imdb": "tt007404",
"tmdb": 422183,
"trakt": 1061,
"tvdb": 1555111
}
}
],
"movies": [
{
"ids": {
"imdb": "tt0372784",
"slug": "batman-begins-2005",
"tmdb": 272,
"trakt": 1
},
"title": "Batman Begins",
"year": 2005
},
{
"ids": {
"imdb": "tt0000111"
}
}
],
"seasons": [
{
"ids": {
"tmdb": 81266,
"trakt": 140912,
"tvdb": 703353
}
}
],
"shows": [
{
"ids": {
"imdb": "tt0903747",
"slug": "breaking-bad",
"tmdb": 1396,
"trakt": 1,
"tvdb": 81189
},
"title": "Breaking Bad",
"year": 2008
},
{
"ids": {
"imdb": "tt1520211",
"slug": "the-walking-dead",
"tmdb": 1402,
"trakt": 2,
"tvdb": 153021
},
"seasons": [
{
"number": 3
}
],
"title": "The Walking Dead",
"year": 2010
},
{
"ids": {
"imdb": "tt0804503",
"slug": "mad-men",
"tmdb": 1104,
"trakt": 4,
"tvdb": 80337
},
"seasons": [
{
"episodes": [
{
"number": 1
},
{
"number": 2
}
],
"number": 1
}
],
"title": "Mad Men",
"year": 2007
}
]
}Response
OK