Skip to main content
POST
/
v1
/
public
/
feedback-comments.count
curl --location --request POST 'https://api.yourapp.com/v1/public/feedback-comments.count' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--data-raw '{
  "feedbackId": "feedback-uuid"
}'
{
  "data": {
    "count": 12,
    "feedbackId": "feedback-uuid"
  }
}

Authentication

Authorization: Bearer YOUR_API_KEY

Request Body

feedbackId
string
required
The feedback ID to get comment count for

Response

data
object
Comment count data
curl --location --request POST 'https://api.yourapp.com/v1/public/feedback-comments.count' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--data-raw '{
  "feedbackId": "feedback-uuid"
}'
{
  "data": {
    "count": 12,
    "feedbackId": "feedback-uuid"
  }
}

Use Cases

  • Display Comment Count: Show number of comments on feedback items
  • Engagement Metrics: Track discussion activity
  • Quick Stats: Get count without loading all comments

Notes

  • Includes all comments (public and private)
  • Count updates in real-time as comments are added
  • Does not require loading the full comment list