GET api/Drawing/GetProjectDrawings?projectId={projectId}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
projectId

integer

Required

Body Parameters

None.

Response Information

Resource Description

Collection of DrawingVm
NameDescriptionTypeAdditional information
Id

integer

None.

DrawingNo

string

None.

Name

string

None.

AccountTypeId

integer

None.

ProjectId

integer

None.

Description

string

None.

LastUploadedOn

date

None.

ControlNote

string

None.

AlertStatus

string

None.

IsDeleted

boolean

None.

DocumentsCount

integer

None.

PdfRef

string

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "Id": 1,
    "DrawingNo": "sample string 2",
    "Name": "sample string 3",
    "AccountTypeId": 4,
    "ProjectId": 5,
    "Description": "sample string 6",
    "LastUploadedOn": "2025-12-17T14:48:05.7363722+01:00",
    "ControlNote": "sample string 7",
    "AlertStatus": "sample string 8",
    "IsDeleted": true,
    "DocumentsCount": 10,
    "PdfRef": "sample string 11"
  },
  {
    "Id": 1,
    "DrawingNo": "sample string 2",
    "Name": "sample string 3",
    "AccountTypeId": 4,
    "ProjectId": 5,
    "Description": "sample string 6",
    "LastUploadedOn": "2025-12-17T14:48:05.7363722+01:00",
    "ControlNote": "sample string 7",
    "AlertStatus": "sample string 8",
    "IsDeleted": true,
    "DocumentsCount": 10,
    "PdfRef": "sample string 11"
  }
]

application/xml, text/xml

Sample:
<ArrayOfDrawingVm xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Nokon.Nappen.Data.ViewModels">
  <DrawingVm>
    <AccountTypeId>4</AccountTypeId>
    <AlertStatus>sample string 8</AlertStatus>
    <ControlNote>sample string 7</ControlNote>
    <Description>sample string 6</Description>
    <DocumentsCount>10</DocumentsCount>
    <DrawingNo>sample string 2</DrawingNo>
    <Id>1</Id>
    <IsDeleted>true</IsDeleted>
    <LastUploadedOn>2025-12-17T14:48:05.7363722+01:00</LastUploadedOn>
    <Name>sample string 3</Name>
    <PdfRef>sample string 11</PdfRef>
    <ProjectId>5</ProjectId>
  </DrawingVm>
  <DrawingVm>
    <AccountTypeId>4</AccountTypeId>
    <AlertStatus>sample string 8</AlertStatus>
    <ControlNote>sample string 7</ControlNote>
    <Description>sample string 6</Description>
    <DocumentsCount>10</DocumentsCount>
    <DrawingNo>sample string 2</DrawingNo>
    <Id>1</Id>
    <IsDeleted>true</IsDeleted>
    <LastUploadedOn>2025-12-17T14:48:05.7363722+01:00</LastUploadedOn>
    <Name>sample string 3</Name>
    <PdfRef>sample string 11</PdfRef>
    <ProjectId>5</ProjectId>
  </DrawingVm>
</ArrayOfDrawingVm>