GET Api/File/FileList?Path={Path}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| Path | string |
Required |
Body Parameters
None.
Response Information
Resource Description
ResponseviewModel| Name | Description | Type | Additional information |
|---|---|---|---|
| Result | string |
None. |
|
| Message | string |
None. |
|
| StatusCode | integer |
None. |
|
| IsValid | boolean |
None. |
|
| Data | Object |
None. |
Response Formats
application/json, text/json
Sample:
{
"Result": "sample string 1",
"Message": "sample string 2",
"StatusCode": 1,
"IsValid": true,
"Data": {}
}
application/xml, text/xml
Sample:
<ResponseviewModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/CreditTrackAzure.Data.Models"> <Data /> <IsValid>true</IsValid> <Message>sample string 2</Message> <Result>sample string 1</Result> <StatusCode>1</StatusCode> </ResponseviewModel>