curl --location --request POST 'https://api.yourapp.com/v1/public/feedback-comments.list' \ --header 'Authorization: Bearer YOUR_API_KEY' \ --header 'Content-Type: application/json' \ --data-raw '{ "feedbackId": "feedback-uuid", "limit": 20, "offset": 0, "direction": "ASC" }'
{ "data": [ { "id": "comment-uuid-1", "text": "Great idea! We really need this feature.", "feedbackId": "feedback-uuid", "subscriberId": "subscriber-uuid-1", "subscriber": { "id": "subscriber-uuid-1", "name": "John Doe", "email": "john@example.com", "avatarUrl": "https://example.com/avatar.jpg" }, "isPrivate": false, "createdAt": "2024-01-15T10:30:00Z", "updatedAt": "2024-01-15T10:30:00Z" }, { "id": "comment-uuid-2", "text": "We're working on this! Expected in Q2.", "feedbackId": "feedback-uuid", "subscriberId": "team-member-uuid", "subscriber": { "id": "team-member-uuid", "name": "Support Team", "email": "support@company.com", "avatarUrl": null }, "isPrivate": false, "createdAt": "2024-01-15T14:22:00Z", "updatedAt": "2024-01-15T14:22:00Z" } ], "pagination": { "total": 12, "limit": 20, "offset": 0 } }
Get all comments on a feedback item with pagination and sorting options.
Authorization: Bearer YOUR_API_KEY
Show Comment Object
Show properties
Was this page helpful?