action trakt_get_saved_filters { label: "Get saved filters" description: "#### 🔒 OAuth Required 📄 Pagination 🔥 VIP Only\n\nGet all saved filters a user has created. The `path` and `query` can be used to construct an API path to retrieve the saved data. Think of this like a dynamically updated list." provider: trakt method: GET path: "/users/saved_filters/{section}" encoding: json input: { type: "object" properties: { section: { type: "string" enum: ["movies", "shows", "calendars", "search"] } "trakt-api-key": { type: "string" } "trakt-api-version": { type: "string" } } required: ["section"] additionalProperties: false } output: { type: "object" additionalProperties: true } }