action trakt_get_personal_recommendations { label: "Get personal recommendations" description: "#### 🔒 OAuth Required 📄 Pagination Optional ✨ Extended Info 😁 Emojis\n\nIf the user only had 50 movies and TV shows to bring with them on a desert island, what would they be? These recommendations are used to enchance Trakt's social recommendation algorithm. Apps should encourage user's to build their personal recommendations so the algorithm keeps getting better.\n\n#### Notes\n\nEach recommendation contains a `notes` field explaining why the user recommended the item." provider: trakt method: GET path: "/sync/recommendations/{type}/{sort}" encoding: json input: { type: "object" properties: { sort: { type: "string" enum: ["rank", "added", "released", "title"] } "trakt-api-key": { type: "string" } "trakt-api-version": { type: "string" } type: { type: "string" enum: ["movies", "shows"] } } required: ["sort", "type"] additionalProperties: false } output: { type: "object" additionalProperties: true } }