| GET,POST | /{Workspace}/Undelete |
|---|
export class DeletedItem
{
public ObjectId: string;
public Class: string;
public Name: string;
public Type: string;
public DeletedBy: string;
public DeletedDate: string;
public Created: string;
public LastUpdated: string;
public constructor(init?: Partial<DeletedItem>) { (Object as any).assign(this, init); }
}
/** @description Handles undelete of data. */
export class Undelete
{
public Workspace: string;
public DeletedItems: DeletedItem[];
public DeletedItemsToRestore: DeletedItem[];
public constructor(init?: Partial<Undelete>) { (Object as any).assign(this, init); }
}
To override the Content-type in your clients, use the HTTP Accept Header, append the .xml suffix or ?format=xml
The following are sample HTTP requests and responses. The placeholders shown need to be replaced with actual values.
POST /{Workspace}/Undelete HTTP/1.1
Host: dev.fieldsquared.com
Accept: application/xml
Content-Type: application/xml
Content-Length: length
<Undelete xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Field2Office.API.Model.Undelete">
<DeletedItems>
<DeletedItem>
<Class>String</Class>
<Created>String</Created>
<DeletedBy>String</DeletedBy>
<DeletedDate>String</DeletedDate>
<LastUpdated>String</LastUpdated>
<Name>String</Name>
<ObjectId>String</ObjectId>
<Type>String</Type>
</DeletedItem>
</DeletedItems>
<DeletedItemsToRestore>
<DeletedItem>
<Class>String</Class>
<Created>String</Created>
<DeletedBy>String</DeletedBy>
<DeletedDate>String</DeletedDate>
<LastUpdated>String</LastUpdated>
<Name>String</Name>
<ObjectId>String</ObjectId>
<Type>String</Type>
</DeletedItem>
</DeletedItemsToRestore>
<Workspace>String</Workspace>
</Undelete>