GET api/FileFolder?ParentID={ParentID}
Request Information
URI Parameters
Name | Description | Type | Additional information |
---|---|---|---|
ParentID | integer |
Required |
Body Parameters
None.
Response Information
Resource Description
Collection of FileFolderDTOName | Description | Type | Additional 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 }, { "ID": 1, "SystemUserID": 2, "Name": "sample string 3", "Type": 4, "ParentID": 5, "Shared": true, "Starred": true } ]
application/xml, text/xml
Sample:
<ArrayOfFileFolderDTO xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/DataAccess.DTO"> <FileFolderDTO> <ID>1</ID> <Name>sample string 3</Name> <ParentID>5</ParentID> <Shared>true</Shared> <Starred>true</Starred> <SystemUserID>2</SystemUserID> <Type>4</Type> </FileFolderDTO> <FileFolderDTO> <ID>1</ID> <Name>sample string 3</Name> <ParentID>5</ParentID> <Shared>true</Shared> <Starred>true</Starred> <SystemUserID>2</SystemUserID> <Type>4</Type> </FileFolderDTO> </ArrayOfFileFolderDTO>