Description
Gets the history of moves for the specified file.
Parameters
Name | Description | Data Type |
vaultName | (Required URI Parameter) Vault name | string |
fileId | (Required URI Parameter) File ID | integer |
folderId | (URI Parameter) Folder ID, default is 0 | integer |
Source | (Response) Source Folder:
FolderId: integer
FolderPath: string
(Member of HistoryMove) | Folder |
Destination | (Response) Destination Folder:
FolderId: integer
FolderPath: string
(Member of HistoryMove) | Folder |
Date | (Response) Date
(Member of HistoryMove) | date |
Response (application/json, text/json)
Sample Data
[
{
"Source": {
"FolderId": 1,
"FolderPath": "sample string 2"
},
"Destination": {
"FolderId": 1,
"FolderPath": "sample string 2"
},
"Date": "2024-02-26T09:21:00.9601067-05:00"
},
{
"Source": {
"FolderId": 1,
"FolderPath": "sample string 2"
},
"Destination": {
"FolderId": 1,
"FolderPath": "sample string 2"
},
"Date": "2024-02-26T09:21:00.9601067-05:00"
}
]
Response (application/xml, text/xml)
Sample Data
<ArrayOfHistoryMove xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/SWPDM.Models">
<HistoryMove>
<Date>2024-02-26T09:21:00.9601067-05:00</Date>
<Destination>
<FolderId>1</FolderId>
<FolderPath>sample string 2</FolderPath>
</Destination>
<Source>
<FolderId>1</FolderId>
<FolderPath>sample string 2</FolderPath>
</Source>
</HistoryMove>
<HistoryMove>
<Date>2024-02-26T09:21:00.9601067-05:00</Date>
<Destination>
<FolderId>1</FolderId>
<FolderPath>sample string 2</FolderPath>
</Destination>
<Source>
<FolderId>1</FolderId>
<FolderPath>sample string 2</FolderPath>
</Source>
</HistoryMove>
</ArrayOfHistoryMove>
See Also