GET api/GetFilePaths?pageSize={pageSize}&lastId={lastId}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| pageSize | integer |
Required |
|
| lastId | integer |
Required |
Body Parameters
None.
Response Information
Resource Description
Collection of FileKey| Name | Description | Type | Additional information |
|---|---|---|---|
| FileId | integer |
None. |
|
| path | string |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"FileId": 1,
"path": "sample string 2"
},
{
"FileId": 1,
"path": "sample string 2"
}
]
application/xml, text/xml
Sample:
<ArrayOfFileController.FileKey xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/ApiLMD.Controllers">
<FileController.FileKey>
<FileId>1</FileId>
<path>sample string 2</path>
</FileController.FileKey>
<FileController.FileKey>
<FileId>1</FileId>
<path>sample string 2</path>
</FileController.FileKey>
</ArrayOfFileController.FileKey>