GET api/historical/GetHistoricalDomainGroupNodeTree/{scanId}

Gets the node tree model for this trackermap. A flatted shallow depth presentation of the arrows on the trackermap.

Request Information

URI Parameters

NameDescriptionTypeAdditional information
scanId

globally unique identifier

Required

Body Parameters

None.

Response Information

Resource Description

Collection of TreeViewSummary
NameDescriptionTypeAdditional information
Company

string

None.

AverageLatency

integer

None.

Domain

string

None.

TreeLevel

integer

None.

Type

string

None.

Id

string

None.

Deleted

boolean

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "Company": "sample string 1",
    "AverageLatency": 2,
    "Domain": "sample string 3",
    "TreeLevel": 4,
    "Type": "sample string 5",
    "Id": "sample string 6",
    "Deleted": true
  },
  {
    "Company": "sample string 1",
    "AverageLatency": 2,
    "Domain": "sample string 3",
    "TreeLevel": 4,
    "Type": "sample string 5",
    "Id": "sample string 6",
    "Deleted": true
  }
]

application/xml, text/xml

Sample:
<ArrayOfTreeViewSummary xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/TrackerMapLive.Business.Models.Widget">
  <TreeViewSummary>
    <AverageLatency>2</AverageLatency>
    <Company>sample string 1</Company>
    <Deleted>true</Deleted>
    <Domain>sample string 3</Domain>
    <Id>sample string 6</Id>
    <TreeLevel>4</TreeLevel>
    <Type>sample string 5</Type>
  </TreeViewSummary>
  <TreeViewSummary>
    <AverageLatency>2</AverageLatency>
    <Company>sample string 1</Company>
    <Deleted>true</Deleted>
    <Domain>sample string 3</Domain>
    <Id>sample string 6</Id>
    <TreeLevel>4</TreeLevel>
    <Type>sample string 5</Type>
  </TreeViewSummary>
</ArrayOfTreeViewSummary>