action trakt_get_all_movie_comments { label: "Get all movie comments" description: "#### 📄 Pagination 😁 Emojis\n\nReturns all top level comments for a movie. By default, the `newest` comments are returned first. Other sorting options include `oldest`, most `likes`, most `replies`, `highest` rated, `lowest` rated, and most `plays`." provider: trakt method: GET path: "/movies/{id}/comments/{sort}" encoding: json input: { type: "object" properties: { id: { type: "string" } sort: { type: "string" enum: ["newest", "oldest", "likes", "replies", "highest", "lowest", "plays"] } "trakt-api-key": { type: "string" } "trakt-api-version": { type: "string" } } required: ["id", "sort"] additionalProperties: false } output: { type: "object" additionalProperties: true } }