GET api/FileFolder?id={id}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
id

integer

Required

Body Parameters

None.

Response Information

Resource Description

FileFolderDTO
NameDescriptionTypeAdditional information
ID

integer

None.

SystemUserID

integer

None.

Name

string

None.

Type

integer

None.

ParentID

integer

None.

Shared

boolean

None.

Starred

boolean

None.

Response Formats

application/json, text/json

Sample:
{
  "ID": 1,
  "SystemUserID": 2,
  "Name": "sample string 3",
  "Type": 4,
  "ParentID": 5,
  "Shared": true,
  "Starred": true
}

application/xml, text/xml

Sample:
<FileFolderDTO xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/DataAccess.DTO">
  <ID>1</ID>
  <Name>sample string 3</Name>
  <ParentID>5</ParentID>
  <Shared>true</Shared>
  <Starred>true</Starred>
  <SystemUserID>2</SystemUserID>
  <Type>4</Type>
</FileFolderDTO>