---
title: "List comments from a feedback"
method: GET
path: "/feedback/comment"
tags: ["Feedback Comment"]
---

# List comments from a feedback

`GET /feedback/comment`

Lists available feedback comments

## Query parameters

- `page` integer — Page number - used for pagination
- `limit` integer — Page limit - used to limit the result set to a number of records per page
- `sort` string — Allows to sort the results by single field
- `filter` string — Allows filtering results using odata filter syntax

## Response `200`

Ok

- FeedbackCommentListResponse
  - `_links` object, required — A collection of Hypermedia Application Language (HATEOS) links
    - `previous` string, uri — When using pagination, The URI link to the previous page of results
    - `next` string, uri — When using pagination, The URI link to the next page of results
    - `last` string, uri — When using pagination, The URI link to the last page of results
    - `first` string, uri — When using pagination, the URI link to the first page of results
    - `self` string, uri, required — The URI link to the current resource
  - `_pagination` object, required — Pagination metadata
    - `totalPages` integer, required — Total pages available
    - `totalRecords` integer, required — Total results available
    - `pageSize` integer, required — Page size
    - `records` integer, required — The count of records returned in the current page
    - `pageNumber` integer, required — Current pagination page number
  - `data` BaseFeedbackComment[], required — An array of FeedbackComment objects returned by the API
    - `id` integer, required — ID is a generic type that is used to represent a unique identifier
    - `feedbackId` integer, required — ID is a generic type that is used to represent a unique identifier
    - `userId` integer — ID is a generic type that is used to represent a unique identifier
    - `screenshotNum` number, double, required
    - `replyCommentId` integer — ID is a generic type that is used to represent a unique identifier
    - `isResolved` boolean, required — If true, the comment has been internally marked as resolved.
    - `isPublic` boolean, required — If true, the comment is public and visible to all users.
    - `guestEmail` string, email — The email of the ananymous user who created the comment, if defined.
    - `guestName` string — The name of the ananymous user who created the comment, if defined.
    - `comment` string, required — The contents of the comment.
    - `attachmentUrl` string, uri — The attachment url of the comment, if defined.
    - `reaction` object[], required — Emoji reactions to the comment.
      - `count` number, double, required — The number of times the emoji has been used in the reaction.
      - `emoji` string, required — The string of the emoji used in the reaction.
    - `created` string, date-time, required — Timestamp of when the comment was created.
    - `modified` string, date-time, required — Timestamp of when the comment was last updated.

## Other responses

- `401` — Not Authorized
- `422` — Validation Error
- `429` — Too Many Requests
- `500` — Interal Server Error

---

[API](https://skmtc.dev/userback/apis/userback-rest-api.md) · [All operations](https://skmtc.dev/userback/apis/userback-rest-api/llms.txt) · [OpenAPI document](https://skmtc-service-production.skmtc.workers.dev/v1/apis/userback/userback-rest-api/revisions/7fb30e1173ca/schema)
