GET api/v7/TaxonomyLevels

Returns all taxonomy level records from the database.

Request Information

URI Parameters

None.

Body Parameters

None.

Response Information

Resource Description

A response containing an acknowledgement and the requested taxonomy level information.

Collection of TaxonomyLevel
NameDescriptionType
LevelName

Corresponding organizational unit level name.

string
LevelDescription

Corresponding organizational unit level description.

string
isLowestLevel

Flag indicating whether the level is the lowest level in the taxonomy

boolean
customerAuditDate

Last modified audit information

date

Response Formats

application/json, text/json

Sample:
[
  {
    "LevelName": "sample string 1",
    "LevelDescription": "sample string 2",
    "isLowestLevel": true,
    "customerAuditDate": "2018-01-01T00:00:00"
  },
  {
    "LevelName": "sample string 1",
    "LevelDescription": "sample string 2",
    "isLowestLevel": true,
    "customerAuditDate": "2018-01-01T00:00:00"
  }
]

application/xml, text/xml

Sample:
<ArrayOfTaxonomyLevel xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
  <TaxonomyLevel>
    <LevelName>sample string 1</LevelName>
    <LevelDescription>sample string 2</LevelDescription>
    <isLowestLevel>true</isLowestLevel>
    <customerAuditDate>2018-01-01T00:00:00</customerAuditDate>
  </TaxonomyLevel>
  <TaxonomyLevel>
    <LevelName>sample string 1</LevelName>
    <LevelDescription>sample string 2</LevelDescription>
    <isLowestLevel>true</isLowestLevel>
    <customerAuditDate>2018-01-01T00:00:00</customerAuditDate>
  </TaxonomyLevel>
</ArrayOfTaxonomyLevel>