GET api/TreeFullPath

Request Information

URI Parameters

None.

Body Parameters

None.

Response Information

Resource Description

Collection of TreeFullPathVM
NameDescriptionTypeAdditional information
ID

integer

None.

Path

string

None.

RootID

integer

None.

RootPath

string

None.

Lvl

integer

None.

TreeType2No

integer

None.

TreeType2Text

string

None.

DeletedFlag

boolean

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "ID": 1,
    "Path": "sample string 2",
    "RootID": 3,
    "RootPath": "sample string 4",
    "Lvl": 5,
    "TreeType2No": 1,
    "TreeType2Text": "sample string 6",
    "DeletedFlag": true
  },
  {
    "ID": 1,
    "Path": "sample string 2",
    "RootID": 3,
    "RootPath": "sample string 4",
    "Lvl": 5,
    "TreeType2No": 1,
    "TreeType2Text": "sample string 6",
    "DeletedFlag": true
  }
]

application/xml, text/xml

Sample:
<ArrayOfTreeFullPathVM xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/AKM.Common.BL.ViewModels">
  <TreeFullPathVM>
    <DeletedFlag>true</DeletedFlag>
    <ID>1</ID>
    <Lvl>5</Lvl>
    <Path>sample string 2</Path>
    <RootID>3</RootID>
    <RootPath>sample string 4</RootPath>
    <TreeType2No>1</TreeType2No>
    <TreeType2Text>sample string 6</TreeType2Text>
  </TreeFullPathVM>
  <TreeFullPathVM>
    <DeletedFlag>true</DeletedFlag>
    <ID>1</ID>
    <Lvl>5</Lvl>
    <Path>sample string 2</Path>
    <RootID>3</RootID>
    <RootPath>sample string 4</RootPath>
    <TreeType2No>1</TreeType2No>
    <TreeType2Text>sample string 6</TreeType2Text>
  </TreeFullPathVM>
</ArrayOfTreeFullPathVM>