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