Field Squared API Services

<back to all web services

Undelete

Handles undelete of data.

The following routes are available for this service:
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); }
}

TypeScript Undelete DTOs

To override the Content-type in your clients, use the HTTP Accept Header, append the .jsv suffix or ?format=jsv

HTTP + JSV

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: text/jsv
Content-Type: text/jsv
Content-Length: length

{
	Workspace: String,
	DeletedItems: 
	[
		{
			ObjectId: String,
			Class: String,
			Name: String,
			Type: String,
			DeletedBy: String,
			DeletedDate: String,
			Created: String,
			LastUpdated: String
		}
	],
	DeletedItemsToRestore: 
	[
		{
			ObjectId: String,
			Class: String,
			Name: String,
			Type: String,
			DeletedBy: String,
			DeletedDate: String,
			Created: String,
			LastUpdated: String
		}
	]
}