GET tssapi/v1/GetGLBDirectoryContents/{path}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
path

string

Default value is

Body Parameters

None.

Response Information

Resource Description

Collection of TSSDirectoryEntry
NameDescriptionTypeAdditional information
type

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "type": 0,
    "name": "sample string 1",
    "path": "sample string 2",
    "size": 3
  },
  {
    "type": 0,
    "name": "sample string 1",
    "path": "sample string 2",
    "size": 3
  }
]

application/xml, text/xml

Sample:
<ArrayOfTSSDirectoryEntry xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/arvr_station_standards_api.Models">
  <TSSDirectoryEntry>
    <name>sample string 1</name>
    <path>sample string 2</path>
    <size>3</size>
    <type>Folder</type>
  </TSSDirectoryEntry>
  <TSSDirectoryEntry>
    <name>sample string 1</name>
    <path>sample string 2</path>
    <size>3</size>
    <type>Folder</type>
  </TSSDirectoryEntry>
</ArrayOfTSSDirectoryEntry>