GET
/
beta
/
cards
/
{cardId}
/
comments
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>"
    }
  ]
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

cardId
string
required

The unique identifier for the card

Response

200
application/json

Comments retrieved successfully

The response is of type object.