Skip to content
GET/comments/{commentId}

Get a comment

Get a single comment by ID

Parameters

NameInTypeDescription
commentIdrequiredpathstringComment ID

Response

Comment details

FieldTypeDescription
idrequiredstringTypeID - a type-prefixed UUID
postIdrequiredstringTypeID - a type-prefixed UUID
parentIdrequiredstring | nullParent comment ID for replies
contentrequiredstring
authorNamerequiredstring | null
authorEmailrequiredstring | null
principalIdrequiredstring | nullPrincipal ID of the comment author
isTeamMemberrequiredbooleanWhether the author is a team member
createdAtrequiredstringISO 8601 timestamp
deletedAtrequiredstring | nullWhen the comment was deleted, null if active

Errors

401Unauthorized
404Comment not found

Example request

curl \
  "https://feedback.quackback.io/api/v1/comments/:commentId" \
  -H "Authorization: Bearer qb_your_api_key_here"