Field Squared API Services

<back to all web services

Rollback

Returns a list of previous versions for a given object and allows rollback to that version.

The following routes are available for this service:
GET/{Workspace}/Rollback/{Class}/{ObjectId}
POST/{Workspace}/Rollback/{Class}/{ObjectId}/{VersionId}

export class DomainItem
{
    public Workspace: string;
    public ObjectId: string;
    public VersionId: string;
    public LastUpdated: string;

    public constructor(init?: Partial<DomainItem>) { (Object as any).assign(this, init); }
}

/** @description Returns a list of previous versions for a given object and allows rollback to that version. */
export class Rollback
{
    public ObjectId: string;
    public VersionId: string;
    public Class: string;
    public Workspace: string;
    public Items: DomainItem[];

    public constructor(init?: Partial<Rollback>) { (Object as any).assign(this, init); }
}

TypeScript Rollback DTOs

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

HTTP + XML

The following are sample HTTP requests and responses. The placeholders shown need to be replaced with actual values.

POST /{Workspace}/Rollback/{Class}/{ObjectId}/{VersionId} HTTP/1.1 
Host: dev.fieldsquared.com 
Accept: application/xml
Content-Type: application/xml
Content-Length: length

<Rollback xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Field2Office.API.Model.Rollback">
  <Class>String</Class>
  <Items xmlns:d2p1="http://schemas.datacontract.org/2004/07/Field2Office.API.Model">
    <d2p1:DomainItem>
      <d2p1:LastUpdated>String</d2p1:LastUpdated>
      <d2p1:ObjectId>String</d2p1:ObjectId>
      <d2p1:VersionId>String</d2p1:VersionId>
      <d2p1:Workspace>String</d2p1:Workspace>
    </d2p1:DomainItem>
  </Items>
  <ObjectId>String</ObjectId>
  <VersionId>String</VersionId>
  <Workspace>String</Workspace>
</Rollback>