GET api/DMS/DmsFileList?operatorId={operatorId}&path={path}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| operatorId | integer |
Required |
|
| path | string |
Required |
Body Parameters
None.
Response Information
Resource Description
Collection of DmsFileDto| Name | Description | Type | Additional information |
|---|---|---|---|
| Path | string |
None. |
|
| Status | integer |
None. |
|
| Token | string |
None. |
|
| Name | string |
None. |
|
| TypeCode | string |
None. |
|
| TypeName | string |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"Path": "sample string 1",
"Status": 2,
"Token": "sample string 3",
"Name": "sample string 4",
"TypeCode": "sample string 5",
"TypeName": "sample string 6"
},
{
"Path": "sample string 1",
"Status": 2,
"Token": "sample string 3",
"Name": "sample string 4",
"TypeCode": "sample string 5",
"TypeName": "sample string 6"
}
]
application/xml, text/xml
Sample:
<ArrayOfDmsFileDto xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/TMSWebAPI.Models.DMS">
<DmsFileDto>
<Name>sample string 4</Name>
<Path>sample string 1</Path>
<Status>2</Status>
<Token>sample string 3</Token>
<TypeCode>sample string 5</TypeCode>
<TypeName>sample string 6</TypeName>
</DmsFileDto>
<DmsFileDto>
<Name>sample string 4</Name>
<Path>sample string 1</Path>
<Status>2</Status>
<Token>sample string 3</Token>
<TypeCode>sample string 5</TypeCode>
<TypeName>sample string 6</TypeName>
</DmsFileDto>
</ArrayOfDmsFileDto>