GET api1/ProductHierarchyLevel2

Request Information

URI Parameters

None.

Body Parameters

None.

Response Information

Resource Description

Collection of ProductHierarchyLevel2DTO
NameDescriptionTypeAdditional information
ProductHierarchyLevel2ID

integer

None.

Name

string

None.

Description

string

None.

IsChecked

boolean

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "ProductHierarchyLevel2ID": 1,
    "Name": "sample string 2",
    "Description": "sample string 3",
    "IsChecked": true
  },
  {
    "ProductHierarchyLevel2ID": 1,
    "Name": "sample string 2",
    "Description": "sample string 3",
    "IsChecked": true
  }
]

application/xml, text/xml

Sample:
<ArrayOfProductHierarchyLevel2DTO xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/GENEX.Royalty.DTO">
  <ProductHierarchyLevel2DTO>
    <Description>sample string 3</Description>
    <IsChecked>true</IsChecked>
    <Name>sample string 2</Name>
    <ProductHierarchyLevel2ID>1</ProductHierarchyLevel2ID>
  </ProductHierarchyLevel2DTO>
  <ProductHierarchyLevel2DTO>
    <Description>sample string 3</Description>
    <IsChecked>true</IsChecked>
    <Name>sample string 2</Name>
    <ProductHierarchyLevel2ID>1</ProductHierarchyLevel2ID>
  </ProductHierarchyLevel2DTO>
</ArrayOfProductHierarchyLevel2DTO>