action trakt_get_ratings { label: "Get ratings" description: "#### 🔒 OAuth Required 📄 Pagination Optional ✨ Extended Info\n\nGet a user's ratings filtered by `type`. You can optionally filter for a specific `rating` between 1 and 10. Send a comma separated string for `rating` if you need multiple ratings." provider: trakt method: GET path: "/sync/ratings/{type}/{rating}" encoding: json input: { type: "object" properties: { rating: { type: "integer" enum: ["1", "2", "3", "4", "5", "6", "7", "8", "9", "10"] } "trakt-api-key": { type: "string" } "trakt-api-version": { type: "string" } type: { type: "string" enum: ["movies", "shows", "seasons", "episodes", "all"] } } required: ["rating", "type"] additionalProperties: false } output: { type: "object" additionalProperties: true } }