GET ReferenceData/project-types
Returns all project types.
Request Information
URI Parameters
None.
Body Parameters
None.
Response Information
Resource Description
List of project types
Collection of ProjectType| Name | Description | Type | Additional information |
|---|---|---|---|
| Id |
Defines the reference data item's Id. |
integer |
None. |
| Value |
Defines the reference data item's value. |
string |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"Id": 2,
"Value": "sample string 3"
},
{
"Id": 2,
"Value": "sample string 3"
}
]
application/xml, text/xml
Sample:
<ArrayOfProjectType xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Sif.Source.Api.Models">
<ProjectType>
<Id>2</Id>
<Value>sample string 3</Value>
</ProjectType>
<ProjectType>
<Id>2</Id>
<Value>sample string 3</Value>
</ProjectType>
</ArrayOfProjectType>