GET api/v1/lookup/subClassifications
Request Information
URI Parameters
None.
Body Parameters
None.
Response Information
Resource Description
Collection of LookupChild| Name | Description | Type | Additional information |
|---|---|---|---|
| Id | integer |
None. |
|
| ParentId | integer |
None. |
|
| Name | string |
None. |
Response Formats
application/json, text/json, text/html
Sample:
[
{
"id": 1,
"parentId": 2,
"name": "sample string 3"
},
{
"id": 1,
"parentId": 2,
"name": "sample string 3"
}
]
application/xml, text/xml
Sample:
<ArrayOfLookupChild xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/VOL.Core.CustomModels">
<LookupChild>
<Id>1</Id>
<Name>sample string 3</Name>
<ParentId>2</ParentId>
</LookupChild>
<LookupChild>
<Id>1</Id>
<Name>sample string 3</Name>
<ParentId>2</ParentId>
</LookupChild>
</ArrayOfLookupChild>