action trakt_get_all_users_who_liked_a_comment { label: "Get all users who liked a comment" description: "#### 📄 Pagination\n\nReturns all users who liked a comment. If you only need the `replies` count, the main `comment` object already has that, so no need to use this method." provider: trakt method: GET path: "/comments/{id}/likes" encoding: json input: { type: "object" properties: { id: { type: "integer" } "trakt-api-key": { type: "string" } "trakt-api-version": { type: "string" } } required: ["id"] additionalProperties: false } output: { type: "object" additionalProperties: true } }