Api Home > ArticleType > Get

GET api/V3/ArticleType/Get Gets all root article types

Request Information

URI Parameters

None.

Body Parameters

None.

Response Information

CategoryTreeObject, which contains a single property: an array of CategoryNodeObject.

Resource Description

Collection of DisplayEnumeration
NameDescriptionTypeAdditional information
HierarchyLevel

integer

None.

HierarchyPath

string

None.

Id

globally unique identifier

None.

Name

string

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "Id": "35cfd4b0-5b90-4fa6-8932-23c7e15ddb06",
    "Name": "sample string 1",
    "HierarchyLevel": 1,
    "HierarchyPath": "sample string 2"
  },
  {
    "Id": "35cfd4b0-5b90-4fa6-8932-23c7e15ddb06",
    "Name": "sample string 1",
    "HierarchyLevel": 1,
    "HierarchyPath": "sample string 2"
  }
]

application/xml, text/xml

Sample:
<ArrayOfDisplayEnumeration xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Cireson.ServiceManager.Domain">
  <DisplayEnumeration>
    <HierarchyLevel>1</HierarchyLevel>
    <HierarchyPath>sample string 2</HierarchyPath>
    <Id>35cfd4b0-5b90-4fa6-8932-23c7e15ddb06</Id>
    <Name>sample string 1</Name>
  </DisplayEnumeration>
  <DisplayEnumeration>
    <HierarchyLevel>1</HierarchyLevel>
    <HierarchyPath>sample string 2</HierarchyPath>
    <Id>35cfd4b0-5b90-4fa6-8932-23c7e15ddb06</Id>
    <Name>sample string 1</Name>
  </DisplayEnumeration>
</ArrayOfDisplayEnumeration>