POST api/Sync/CreateDownloadedFilesDetails
Request Information
URI Parameters
None.
Body Parameters
Collection of DownloadedFileDetails| Name | Description | Type | Additional information |
|---|---|---|---|
| ID | globally unique identifier |
None. |
|
| DownloadID | globally unique identifier |
None. |
|
| LocalFilePath | string |
None. |
|
| RemoteDirectoryPath | string |
None. |
|
| RemoteFilePath | string |
None. |
|
| FileSizeInBytes | integer |
None. |
|
| IsDownloadDone | boolean |
None. |
|
| Remarks | string |
None. |
|
| LastTryDateTime | date |
None. |
|
| LastUpdatedDateTime | date |
None. |
Request Formats
application/json, text/json
Sample:
[
{
"ID": "ae1e670f-1b41-4d02-bf48-fe60e1fcc84d",
"DownloadID": "e5794ce7-79b8-49fc-9c78-9ed5c6bbca98",
"LocalFilePath": "sample string 3",
"RemoteDirectoryPath": "sample string 4",
"RemoteFilePath": "sample string 5",
"FileSizeInBytes": 6,
"IsDownloadDone": true,
"Remarks": "sample string 8",
"LastTryDateTime": "2026-03-29T19:11:59.2685154+05:30",
"LastUpdatedDateTime": "2026-03-29T19:11:59.2685154+05:30"
},
{
"ID": "ae1e670f-1b41-4d02-bf48-fe60e1fcc84d",
"DownloadID": "e5794ce7-79b8-49fc-9c78-9ed5c6bbca98",
"LocalFilePath": "sample string 3",
"RemoteDirectoryPath": "sample string 4",
"RemoteFilePath": "sample string 5",
"FileSizeInBytes": 6,
"IsDownloadDone": true,
"Remarks": "sample string 8",
"LastTryDateTime": "2026-03-29T19:11:59.2685154+05:30",
"LastUpdatedDateTime": "2026-03-29T19:11:59.2685154+05:30"
}
]
application/xml, text/xml
Sample:
<ArrayOfDownloadedFileDetails xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/expodine_CloudStorage_WebAPI.Models.Sync">
<DownloadedFileDetails>
<DownloadID>e5794ce7-79b8-49fc-9c78-9ed5c6bbca98</DownloadID>
<FileSizeInBytes>6</FileSizeInBytes>
<ID>ae1e670f-1b41-4d02-bf48-fe60e1fcc84d</ID>
<IsDownloadDone>true</IsDownloadDone>
<LastTryDateTime xmlns:d3p1="http://schemas.datacontract.org/2004/07/System">
<d3p1:DateTime>2026-03-29T13:41:59.2685154Z</d3p1:DateTime>
<d3p1:OffsetMinutes>330</d3p1:OffsetMinutes>
</LastTryDateTime>
<LastUpdatedDateTime xmlns:d3p1="http://schemas.datacontract.org/2004/07/System">
<d3p1:DateTime>2026-03-29T13:41:59.2685154Z</d3p1:DateTime>
<d3p1:OffsetMinutes>330</d3p1:OffsetMinutes>
</LastUpdatedDateTime>
<LocalFilePath>sample string 3</LocalFilePath>
<Remarks>sample string 8</Remarks>
<RemoteDirectoryPath>sample string 4</RemoteDirectoryPath>
<RemoteFilePath>sample string 5</RemoteFilePath>
</DownloadedFileDetails>
<DownloadedFileDetails>
<DownloadID>e5794ce7-79b8-49fc-9c78-9ed5c6bbca98</DownloadID>
<FileSizeInBytes>6</FileSizeInBytes>
<ID>ae1e670f-1b41-4d02-bf48-fe60e1fcc84d</ID>
<IsDownloadDone>true</IsDownloadDone>
<LastTryDateTime xmlns:d3p1="http://schemas.datacontract.org/2004/07/System">
<d3p1:DateTime>2026-03-29T13:41:59.2685154Z</d3p1:DateTime>
<d3p1:OffsetMinutes>330</d3p1:OffsetMinutes>
</LastTryDateTime>
<LastUpdatedDateTime xmlns:d3p1="http://schemas.datacontract.org/2004/07/System">
<d3p1:DateTime>2026-03-29T13:41:59.2685154Z</d3p1:DateTime>
<d3p1:OffsetMinutes>330</d3p1:OffsetMinutes>
</LastUpdatedDateTime>
<LocalFilePath>sample string 3</LocalFilePath>
<Remarks>sample string 8</Remarks>
<RemoteDirectoryPath>sample string 4</RemoteDirectoryPath>
<RemoteFilePath>sample string 5</RemoteFilePath>
</DownloadedFileDetails>
</ArrayOfDownloadedFileDetails>
application/x-www-form-urlencoded
Sample:
Response Information
Resource Description
IHttpActionResultNone.
Response Formats
application/json, text/json, application/xml, text/xml
Sample:
Sample not available.