GET api/DMS/DmsFolderList?operatorId={operatorId}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| operatorId | integer |
Required |
Body Parameters
None.
Response Information
Resource Description
Collection of DmsFolderDto| Name | Description | Type | Additional information |
|---|---|---|---|
| text | string |
None. |
|
| TotalDocuments | integer |
None. |
|
| Id | integer |
None. |
|
| ParentId | integer |
None. |
|
| ShortPath | string |
None. |
|
| FullPathWithCount | string |
None. |
|
| AdaptedParentId | integer |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"text": "sample string 1",
"TotalDocuments": 2,
"Id": 3,
"ParentId": 1,
"ShortPath": "sample string 4",
"FullPathWithCount": "sample string 1 (2) documents",
"AdaptedParentId": 1
},
{
"text": "sample string 1",
"TotalDocuments": 2,
"Id": 3,
"ParentId": 1,
"ShortPath": "sample string 4",
"FullPathWithCount": "sample string 1 (2) documents",
"AdaptedParentId": 1
}
]
application/xml, text/xml
Sample:
<ArrayOfDmsFolderDto xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/TMSWebAPI.Models.DMS">
<DmsFolderDto>
<Id>3</Id>
<ParentId>1</ParentId>
<ShortPath>sample string 4</ShortPath>
<TotalDocuments>2</TotalDocuments>
<text>sample string 1</text>
</DmsFolderDto>
<DmsFolderDto>
<Id>3</Id>
<ParentId>1</ParentId>
<ShortPath>sample string 4</ShortPath>
<TotalDocuments>2</TotalDocuments>
<text>sample string 1</text>
</DmsFolderDto>
</ArrayOfDmsFolderDto>