Part3 Developers

Document comments list

GET /organization/{orgId}/project/{projectId}/document/{documentId}/comments

List threaded comments on a document

GET
/organization/{orgId}/project/{projectId}/document/{documentId}/comments
AuthorizationBearer <token>

In: header

Path Parameters

orgId*string

Organization ID — must match the project's org.

projectId*string

Project ID — must contain the document.

documentId*string

Document ID. Returned in the uid field of any document list response (NOT the human-readable id like "RFI-014").

Query Parameters

search?string

Search within comment content (case-insensitive).

Lengthlength <= 500

Response Body

application/json

application/json

application/json

curl -X GET "https://api.part3.io/v1/organization/org_8a1b2c3d4e/project/proj_5f9a3c2e8b/document/doc_2a3b4c5d6e/comments"
{
  "data": [
    {
      "uid": "cmt_2a3b4c5d6e",
      "content": "Confirmed with the architect — please proceed.",
      "author": {
        "uid": "user_99a8b7c6d5",
        "name": "Anika Patel",
        "email": "anika@example.com"
      },
      "createdAt": "2026-04-22T09:14:00Z",
      "updatedAt": "2026-04-22T09:14:00Z"
    }
  ]
}
{
  "error": "Insufficient permissions"
}
{
  "error": "Insufficient permissions"
}