GET api/GetEvaluationCategories
Request Information
URI Parameters
None.
Body Parameters
None.
Response Information
Resource Description
Collection of EvaluationCategory| Name | Description | Type | Additional information |
|---|---|---|---|
| Id | integer |
None. |
|
| Label | string |
Required String length: inclusive between 0 and 128 |
|
| Sequence | integer |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"Id": 1,
"Label": "sample string 2",
"Sequence": 1
},
{
"Id": 1,
"Label": "sample string 2",
"Sequence": 1
}
]
application/xml, text/xml
Sample:
<ArrayOfEvaluationCategory xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Common.Models">
<EvaluationCategory>
<Id>1</Id>
<Label>sample string 2</Label>
<Sequence>1</Sequence>
</EvaluationCategory>
<EvaluationCategory>
<Id>1</Id>
<Label>sample string 2</Label>
<Sequence>1</Sequence>
</EvaluationCategory>
</ArrayOfEvaluationCategory>