Project drawings list
GET /organization/{orgId}/project/{projectId}/drawings
List drawings with full version history
Authorization
bearer AuthorizationBearer <token>
In: header
Path Parameters
orgId*string
Organization ID — must match the project's owning org.
projectId*string
Project ID. Returned in the uid field of any project list response.
Query Parameters
includeDocumentReferences?string
When true, attach the issuance document (Addendum / SI / Bulletin) to each version under versions[].issuanceDocument.
Value in
"true" | "false"Response Body
application/json
application/json
application/json
curl -X GET "https://api.part3.io/v1/organization/org_8a1b2c3d4e/project/proj_5f9a3c2e8b/drawings"{
"data": [
{
"revisionId": "rev_4a5b6c7d8e",
"drawingNumber": "A-201",
"title": "Floor Plan — Level 2",
"disciplineConsultantUuid": "consultant_8f9a0b1c2d",
"latestVersionFileId": "file_7c2a9b1d4e",
"drawingPackage": {
"id": "pkg_3a2b1c0d9e",
"name": "Issued for Construction"
},
"versions": [
{
"fileId": "file_7c2a9b1d4e",
"fileName": "A-201_Floor_Plan_Level_2.pdf",
"issueDate": "2026-04-22",
"createdAt": "2026-04-22T14:30:00Z",
"fileThumbnailUrl": "https://storage.googleapis.com/part3-thumbnails/file_7c2a9b1d4e.jpg?..."
},
{
"fileId": "file_6b1a0c9d8e",
"fileName": "A-201_Floor_Plan_Level_2.pdf",
"issueDate": "2026-03-15",
"createdAt": "2026-03-15T11:02:00Z",
"fileThumbnailUrl": null
}
]
}
]
}{
"error": "Insufficient permissions"
}{
"error": "Insufficient permissions"
}