GET api/v7/HierarchyLevels/{hierarchyLevelCode}

Accepts a HierarchyLevelCode from client and return HierarchyLevelCode and the LevelName as a response.

Request Information

URI Parameters

NameDescriptionTypeRequired?Additional information
hierarchyLevelCode *

HierarchyLevelCode to get the Level Name that matches the HierarchyLevelCode

string

Yes

None.

Body Parameters

None.

Response Information

Resource Description

A response containing HierarchyLevelCode and the LevelName

Hierarchy Level
NameDescriptionType
hierarchyLevelCode

Hierarchy Level code

string
levelName

Hierarchy Level Name

string
customerAuditDate

Last modified audit information

date

Response Formats

application/json, text/json

Sample:
{
  "hierarchyLevelCode": "sample string 1",
  "levelName": "sample string 2",
  "customerAuditDate": "2018-01-01T00:00:00"
}

application/xml, text/xml

Sample:
<HierarchyLevelDto xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
  <hierarchyLevelCode>sample string 1</hierarchyLevelCode>
  <levelName>sample string 2</levelName>
  <customerAuditDate>2018-01-01T00:00:00</customerAuditDate>
</HierarchyLevelDto>