cURL
curl --request GET \ --url https://api.vistaly.com/beta/cards/{cardId}/comments \ --header 'Authorization: Bearer <token>'
{ "comments": [ { "commentId": "<string>", "body": "<string>", "cardId": "<string>", "organizationId": "<string>", "threadRoot": "<string>", "createdAt": "2023-11-07T05:31:56Z", "createdBy": "<string>", "updatedAt": "2023-11-07T05:31:56Z", "updatedBy": "<string>" } ] }
Retrieve all comments for a specific card
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Bearer <token>
<token>
The unique identifier for the card
Comments retrieved successfully
List of comments for the card
Show child attributes
The unique identifier of the comment
The content of the comment
The card ID this comment belongs to
The organization ID
The parent comment ID for threaded comments
When the comment was created
User ID who created the comment
When the comment was last updated
User ID who last updated the comment