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": "c959e966-c9ee-40dc-b730-519da5b6de16",
"DownloadID": "bc9f6e49-1724-4f2d-824a-35bf04ef4b0d",
"LocalFilePath": "sample string 3",
"RemoteDirectoryPath": "sample string 4",
"RemoteFilePath": "sample string 5",
"FileSizeInBytes": 6,
"IsDownloadDone": true,
"Remarks": "sample string 8",
"LastTryDateTime": "2026-05-28T22:47:12.1618763+05:30",
"LastUpdatedDateTime": "2026-05-28T22:47:12.1618763+05:30"
},
{
"ID": "c959e966-c9ee-40dc-b730-519da5b6de16",
"DownloadID": "bc9f6e49-1724-4f2d-824a-35bf04ef4b0d",
"LocalFilePath": "sample string 3",
"RemoteDirectoryPath": "sample string 4",
"RemoteFilePath": "sample string 5",
"FileSizeInBytes": 6,
"IsDownloadDone": true,
"Remarks": "sample string 8",
"LastTryDateTime": "2026-05-28T22:47:12.1618763+05:30",
"LastUpdatedDateTime": "2026-05-28T22:47:12.1618763+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>bc9f6e49-1724-4f2d-824a-35bf04ef4b0d</DownloadID>
<FileSizeInBytes>6</FileSizeInBytes>
<ID>c959e966-c9ee-40dc-b730-519da5b6de16</ID>
<IsDownloadDone>true</IsDownloadDone>
<LastTryDateTime xmlns:d3p1="http://schemas.datacontract.org/2004/07/System">
<d3p1:DateTime>2026-05-28T17:17:12.1618763Z</d3p1:DateTime>
<d3p1:OffsetMinutes>330</d3p1:OffsetMinutes>
</LastTryDateTime>
<LastUpdatedDateTime xmlns:d3p1="http://schemas.datacontract.org/2004/07/System">
<d3p1:DateTime>2026-05-28T17:17:12.1618763Z</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>bc9f6e49-1724-4f2d-824a-35bf04ef4b0d</DownloadID>
<FileSizeInBytes>6</FileSizeInBytes>
<ID>c959e966-c9ee-40dc-b730-519da5b6de16</ID>
<IsDownloadDone>true</IsDownloadDone>
<LastTryDateTime xmlns:d3p1="http://schemas.datacontract.org/2004/07/System">
<d3p1:DateTime>2026-05-28T17:17:12.1618763Z</d3p1:DateTime>
<d3p1:OffsetMinutes>330</d3p1:OffsetMinutes>
</LastTryDateTime>
<LastUpdatedDateTime xmlns:d3p1="http://schemas.datacontract.org/2004/07/System">
<d3p1:DateTime>2026-05-28T17:17:12.1618763Z</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.