Skip to main content
POST

Authentication

Request Body

string
required
The feedback ID to get comments for
number
default:"20"
Number of comments to return per page
number
default:"0"
Number of comments to skip for pagination
string
default:"createdAt"
Field to sort by (createdAt, updatedAt)
string
default:"ASC"
Sort direction (ASC for oldest first, DESC for newest first)

Response

array
Array of comment objects
object
Pagination metadata

Behavior

  • Chronological Order: By default, comments sorted oldest first (ASC)
  • Includes Subscriber: Each comment includes subscriber details
  • Public & Private: Returns both public and private comments
  • Paginated: Use limit/offset for loading more comments

Use Cases

  • Comment Thread: Display discussion on feedback items
  • Activity Feed: Show engagement and responses
  • Moderation: Review all comments on feedback

Notes

  • Private comments only visible to team members
  • Includes subscriber avatar and name for display
  • Supports pagination for long comment threads
  • Default sort is oldest first for conversational flow