Project drawings list
GET /admin/projects/{projectId}/drawings
List all drawings for a project with full revision history. Each drawing includes its number, title, discipline consultant, drawing package, and all version files with issue dates and thumbnail URLs. Use ?includeDocumentReferences=true to include the issuance document (bulletin/transmittal) that issued each version.
Authorization
bearer AuthorizationBearer <token>
In: header
Path Parameters
projectId*string
Project UID
Query Parameters
includeDocumentReferences?string
Include the issuance document reference on each drawing version
Value in
"true" | "false"Response Body
application/json
application/json
application/json
curl -X GET "https://api.part3.io/v1/admin/projects/string/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"
}