POST api/FilesDelete
Request Information
URI Parameters
None.
Body Parameters
ListFilePathDto| Name | Description | Type | Additional information |
|---|---|---|---|
| listFilePath | Collection of FullPath |
None. |
Request Formats
application/json, text/json
Sample:
{
"listFilePath": {
"$type": "System.Collections.Generic.List`1[[Uploading.Controllers.FullPath, GYKJ.TrafficCloud.Web.UploadApi]], mscorlib",
"$values": [
{
"$type": "Uploading.Controllers.FullPath, GYKJ.TrafficCloud.Web.UploadApi",
"fullPath": "sample string 1",
"writeContent": "sample string 2",
"platformId": "sample string 3",
"tenantId": "sample string 4",
"folderName": "sample string 5"
},
{
"$type": "Uploading.Controllers.FullPath, GYKJ.TrafficCloud.Web.UploadApi",
"fullPath": "sample string 1",
"writeContent": "sample string 2",
"platformId": "sample string 3",
"tenantId": "sample string 4",
"folderName": "sample string 5"
}
]
}
}
application/xml, text/xml
Sample:
<ListFilePathDto xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Uploading.Controllers">
<listFilePath>
<FullPath>
<folderName>sample string 5</folderName>
<fullPath>sample string 1</fullPath>
<platformId>sample string 3</platformId>
<tenantId>sample string 4</tenantId>
<writeContent>sample string 2</writeContent>
</FullPath>
<FullPath>
<folderName>sample string 5</folderName>
<fullPath>sample string 1</fullPath>
<platformId>sample string 3</platformId>
<tenantId>sample string 4</tenantId>
<writeContent>sample string 2</writeContent>
</FullPath>
</listFilePath>
</ListFilePathDto>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
HttpRequestMessage| Name | Description | Type | Additional information |
|---|---|---|---|
| Version | Version |
None. |
|
| Content | HttpContent |
None. |
|
| Method | HttpMethod |
None. |
|
| RequestUri | URI |
None. |
|
| Headers | Collection of Object |
None. |
|
| Properties | Dictionary of string [key] and Object [value] |
None. |
Response Formats
application/json, text/json, application/xml, text/xml
Sample:
Sample not available.