GET
/comments/{commentId}Get a comment
Get a single comment by ID
Parameters
| Name | In | Type | Description |
|---|---|---|---|
commentIdrequired | path | string | Comment ID |
Response
Comment details
| Field | Type | Description |
|---|---|---|
idrequired | string | TypeID - a type-prefixed UUID |
postIdrequired | string | TypeID - a type-prefixed UUID |
parentIdrequired | string | null | Parent comment ID for replies |
contentrequired | string | |
authorNamerequired | string | null | |
authorEmailrequired | string | null | |
principalIdrequired | string | null | Principal ID of the comment author |
isTeamMemberrequired | boolean | Whether the author is a team member |
createdAtrequired | string | ISO 8601 timestamp |
deletedAtrequired | string | null | When the comment was deleted, null if active |
Errors
401Unauthorized404Comment not foundExample request
curl \
"https://feedback.quackback.io/api/v1/comments/:commentId" \
-H "Authorization: Bearer qb_your_api_key_here"