GET api/Hierarchy/GetHierarchyList?email={email}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
email

string

Required

Body Parameters

None.

Response Information

Resource Description

Collection of HierarchyDto
NameDescriptionTypeAdditional information
hierarchyId

globally unique identifier

None.

type

string

None.

name

string

None.

parentId

globally unique identifier

None.

detail

Dictionary of string [key] and Object [value]

None.

id

globally unique identifier

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "hierarchyId": "0e313566-9697-4aff-8b8e-1d990932c3a6",
    "type": "sample string 2",
    "name": "sample string 3",
    "parentId": "73ac67fd-628f-4b6f-a112-78cb4e0ba986",
    "detail": {
      "sample string 1": {},
      "sample string 3": {}
    },
    "id": "2a505acd-acd5-4aa3-8170-09abe1a948ce"
  },
  {
    "hierarchyId": "0e313566-9697-4aff-8b8e-1d990932c3a6",
    "type": "sample string 2",
    "name": "sample string 3",
    "parentId": "73ac67fd-628f-4b6f-a112-78cb4e0ba986",
    "detail": {
      "sample string 1": {},
      "sample string 3": {}
    },
    "id": "2a505acd-acd5-4aa3-8170-09abe1a948ce"
  }
]

application/xml, text/xml

Sample:
<ArrayOfHierarchyDto xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/KT.BGip.Visualisation.RPMI.Models.RepoDtos">
  <HierarchyDto>
    <Detail xmlns:d3p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
      <d3p1:KeyValueOfstringanyType>
        <d3p1:Key>sample string 1</d3p1:Key>
        <d3p1:Value />
      </d3p1:KeyValueOfstringanyType>
      <d3p1:KeyValueOfstringanyType>
        <d3p1:Key>sample string 3</d3p1:Key>
        <d3p1:Value />
      </d3p1:KeyValueOfstringanyType>
    </Detail>
    <HierarchyId>0e313566-9697-4aff-8b8e-1d990932c3a6</HierarchyId>
    <Id>2a505acd-acd5-4aa3-8170-09abe1a948ce</Id>
    <Name>sample string 3</Name>
    <ParentId>73ac67fd-628f-4b6f-a112-78cb4e0ba986</ParentId>
    <Type>sample string 2</Type>
  </HierarchyDto>
  <HierarchyDto>
    <Detail xmlns:d3p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
      <d3p1:KeyValueOfstringanyType>
        <d3p1:Key>sample string 1</d3p1:Key>
        <d3p1:Value />
      </d3p1:KeyValueOfstringanyType>
      <d3p1:KeyValueOfstringanyType>
        <d3p1:Key>sample string 3</d3p1:Key>
        <d3p1:Value />
      </d3p1:KeyValueOfstringanyType>
    </Detail>
    <HierarchyId>0e313566-9697-4aff-8b8e-1d990932c3a6</HierarchyId>
    <Id>2a505acd-acd5-4aa3-8170-09abe1a948ce</Id>
    <Name>sample string 3</Name>
    <ParentId>73ac67fd-628f-4b6f-a112-78cb4e0ba986</ParentId>
    <Type>sample string 2</Type>
  </HierarchyDto>
</ArrayOfHierarchyDto>