Skip to main content
GET
/
api
/
board
/
{boardId}
/
{cardId}
/
comments
Get comments on a card
curl --request GET \
  --url https://core-api.getaptly.com/api/board/{boardId}/{cardId}/comments \
  --header 'x-token: <api-key>'
{
  "data": [
    {
      "id": "lf2abc",
      "userId": "user123",
      "content": "Lease renewal confirmed.",
      "createdAt": "2024-03-01T12:00:00Z"
    }
  ]
}

Authorizations

x-token
string
header
required

Path Parameters

boardId
string
required
cardId
string
required

Response

List of comments.

data
object[]