action trakt_get_hidden_items { label: "Get hidden items" description: "#### 🔒 OAuth Required 📄 Pagination ✨ Extended Info\n\nGet hidden items for a section. This will return an array of standard media objects. You can optionally limit the `type` of results to return." provider: trakt method: GET path: "/users/hidden/{section}" encoding: json input: { type: "object" properties: { section: { type: "string" enum: ["calendar", "progress_watched", "progress_watched_reset", "progress_collected", "recommendations", "comments"] } "trakt-api-key": { type: "string" } "trakt-api-version": { type: "string" } type: { type: "string" enum: ["movie", "show", "season", "user"] } } required: ["section"] additionalProperties: false } output: { type: "object" additionalProperties: true } }