action trakt_get_playback_progress { label: "Get playback progress" description: "#### 🔒 OAuth Required 📄 Pagination Optional\n\nWhenever a scrobble is paused, the playback progress is saved. Use this progress to sync up playback across different media centers or apps. For example, you can start watching a movie in a media center, stop it, then resume on your tablet from the same spot. Each item will have the `progress` percentage between 0 and 100.\n\nYou can optionally specify a `type` to only get `movies` or `episodes`.\n\nBy default, all results will be returned. Pagination is optional and can be used for something like an \"on deck\" feature, or if you only need a limited data set.\n\n**Note:** We only save playback progress for the last 6 months." provider: trakt method: GET path: "/sync/playback/{type}" encoding: json input: { type: "object" properties: { end_at: { type: "string" } start_at: { type: "string" } "trakt-api-key": { type: "string" } "trakt-api-version": { type: "string" } type: { type: "string" enum: ["movies", "episodes"] } } required: ["type"] additionalProperties: false } output: { type: "object" additionalProperties: true } }