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