GET V2/odata/ProjectState

Gets ProjectState entities

Request Information

URI Parameters

None.

Body Parameters

None.

Response Information

Resource Description

Collection of QicsUnity.Api.Areas.V2.Models.ProjectState
NameDescriptionTypeAdditional information
ProjectStateId

Gets or sets ProjectState.ProjectStateId

integer

Required

64-bit signed integer

Name

Gets or sets the ProjectState.Name

string

Required

IsDefault

Gets or sets a value indicating whether project state is default

boolean

Required

Response Formats

application/json, text/json

Sample:
[
  {
    "ProjectStateId": "1",
    "Name": "sample 2",
    "IsDefault": true
  },
  {
    "ProjectStateId": "1",
    "Name": "sample 2",
    "IsDefault": true
  }
]

application/xml, text/xml

Sample:
<ArrayOfProjectState xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/QicsUnity.Api.Areas.V2.Models">
  <ProjectState>
    <IsDefault>true</IsDefault>
    <Name>sample 2</Name>
    <ProjectStateId>1</ProjectStateId>
  </ProjectState>
  <ProjectState>
    <IsDefault>true</IsDefault>
    <Name>sample 2</Name>
    <ProjectStateId>1</ProjectStateId>
  </ProjectState>
</ArrayOfProjectState>