v1

latestOpenAPI 3.1.02026-07-24770322.0 KB

get/v1/comments

Query parameters

taskIdstring

Add an taskId if you only want comments for a specific task.

Response

idstring
objectstring
taskIdstring
parentCommentIdstring
contentstring
createdBystring
createdByUserTypestring
createdDatestring
updatedDatestring

Example response

{
  "id": "b2c3d4e5-6789-01bc-defg-2345678901bc",
  "object": "taskComment",
  "taskId": "a1b2c3d4-5678-90ab-cdef-1234567890ab",
  "parentCommentId": "eddeb6a1-dfd7-4a60-9c8c-38ceed09bde9",
  "content": "<p>Here are my receipts!</p>",
  "createdBy": "9eee4ba8-0b5e-47c6-8a4b-53022fbc7875",
  "createdByUserType": "clientUser",
  "createdDate": "2025-05-06T16:45:12Z",
  "attachments": [
    {
      "id": "file-uuid-123",
      "fileName": "receipts_q4.pdf",
      "fileSize": 245832,
      "mimeType": "application/pdf",
      "downloadUrl": "https://...",
      "uploadedBy": "9eee4ba8-0b5e-47c6-8a4b-53022fbc7875",
      "uploadedByUserType": "client",
      "uploadedDate": "2025-05-06T16:45:12Z"
    }
  ]
}