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


/**
* Handles undelete of data.
*/
open class Undelete
{
    var Workspace:String? = null
    var DeletedItems:ArrayList<DeletedItem> = ArrayList<DeletedItem>()
    var DeletedItemsToRestore:ArrayList<DeletedItem> = ArrayList<DeletedItem>()
}

open class DeletedItem
{
    var ObjectId:String? = null
    var Class:String? = null
    var Name:String? = null
    var Type:String? = null
    var DeletedBy:String? = null
    var DeletedDate:String? = null
    var Created:String? = null
    var LastUpdated:String? = null
}

Kotlin Undelete 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}/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>