GET api/Drawing/GetDrawingDocument?drawingId={drawingId}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| drawingId | integer |
Required |
Body Parameters
None.
Response Information
Resource Description
Collection of DrawingDocument| Name | Description | Type | Additional information |
|---|---|---|---|
| Id | integer |
None. |
|
| UploadedOn | date |
None. |
|
| PdfRef | string |
None. |
|
| Comment | string |
None. |
|
| DrawingRefId | integer |
None. |
|
| ProjectId | integer |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"Id": 1,
"UploadedOn": "2025-12-17T14:50:10.4053559+01:00",
"PdfRef": "sample string 3",
"Comment": "sample string 4",
"DrawingRefId": 5,
"ProjectId": 6
},
{
"Id": 1,
"UploadedOn": "2025-12-17T14:50:10.4053559+01:00",
"PdfRef": "sample string 3",
"Comment": "sample string 4",
"DrawingRefId": 5,
"ProjectId": 6
}
]
application/xml, text/xml
Sample:
<ArrayOfDrawingDocument xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Nokon.Nappen.Data.ViewModels">
<DrawingDocument>
<Comment>sample string 4</Comment>
<DrawingRefId>5</DrawingRefId>
<Id>1</Id>
<PdfRef>sample string 3</PdfRef>
<ProjectId>6</ProjectId>
<UploadedOn>2025-12-17T14:50:10.4053559+01:00</UploadedOn>
</DrawingDocument>
<DrawingDocument>
<Comment>sample string 4</Comment>
<DrawingRefId>5</DrawingRefId>
<Id>1</Id>
<PdfRef>sample string 3</PdfRef>
<ProjectId>6</ProjectId>
<UploadedOn>2025-12-17T14:50:10.4053559+01:00</UploadedOn>
</DrawingDocument>
</ArrayOfDrawingDocument>