GET api/project

Request Information

URI Parameters

None.

Body Parameters

None.

Response Information

Resource Description

Collection of Project
NameDescriptionTypeAdditional information
ProjectRepositoryId

string

None.

ProjectId

string

None.

Code

string

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "ProjectRepositoryId": "sample string 1",
    "ProjectId": "sample string 2",
    "Code": "sample string 3"
  },
  {
    "ProjectRepositoryId": "sample string 1",
    "ProjectId": "sample string 2",
    "Code": "sample string 3"
  }
]

application/xml, text/xml

Sample:
<ArrayOfProject xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Autodesk.Consulting.SWECO.BLRD.Models">
  <Project>
    <Code>sample string 3</Code>
    <ProjectId>sample string 2</ProjectId>
    <ProjectRepositoryId>sample string 1</ProjectRepositoryId>
  </Project>
  <Project>
    <Code>sample string 3</Code>
    <ProjectId>sample string 2</ProjectId>
    <ProjectRepositoryId>sample string 1</ProjectRepositoryId>
  </Project>
</ArrayOfProject>