action trakt_get_lists_containing_this_show { label: "Get lists containing this show" description: "#### 📄 Pagination 😁 Emojis\n\nReturns all lists that contain this show. By default, `personal` lists are returned sorted by the most `popular`." provider: trakt method: GET path: "/shows/{id}/lists/{type}/{sort}" encoding: json input: { type: "object" properties: { id: { type: "string" } sort: { type: "string" enum: ["popular", "likes", "comments", "items", "added", "updated"] } "trakt-api-key": { type: "string" } "trakt-api-version": { type: "string" } type: { type: "string" enum: ["all", "personal", "official", "watchlists", "recommendations"] } } required: ["id", "sort", "type"] additionalProperties: false } output: { type: "object" additionalProperties: true } }