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}
import java.math.*
import java.util.*
import net.servicestack.client.*


/**
* Returns a list of previous versions for a given object and allows rollback to that version.
*/
open class Rollback
{
    var ObjectId:String? = null
    var VersionId:String? = null
    var Class:String? = null
    var Workspace:String? = null
    var Items:ArrayList<DomainItem> = ArrayList<DomainItem>()
}

open class DomainItem
{
    var Workspace:String? = null
    var ObjectId:String? = null
    var VersionId:String? = null
    var LastUpdated:String? = null
}

Kotlin Rollback 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}/Rollback/{Class}/{ObjectId}/{VersionId} HTTP/1.1 
Host: dev.fieldsquared.com 
Accept: text/jsv
Content-Type: text/jsv
Content-Length: length

{
	ObjectId: String,
	VersionId: String,
	Class: String,
	Workspace: String,
	Items: 
	[
		{
			Workspace: String,
			ObjectId: String,
			VersionId: String,
			LastUpdated: String
		}
	]
}