curl --location --request POST 'https://api.yourapp.com/v1/public/feedback-comments.create' \ --header 'Authorization: Bearer SUBSCRIBER_JWT_TOKEN' \ --header 'Content-Type: application/json' \ --data-raw '{ "feedbackId": "feedback-uuid", "text": "This would be really useful for our team!" }'
{ "data": { "id": "comment-uuid", "text": "This would be really useful for our team!", "feedbackId": "feedback-uuid", "subscriberId": "subscriber-uuid", "subscriber": { "id": "subscriber-uuid", "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" } }
Add a comment to a feedback item. Requires subscriber authentication.
Authorization: Bearer SUBSCRIBER_JWT_TOKEN
Show Comment Properties
Was this page helpful?