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
namespace Field2Office.API.Model.Undelete

open System
open System.Collections
open System.Collections.Generic
open System.Runtime.Serialization
open ServiceStack
open ServiceStack.DataAnnotations

    [<AllowNullLiteral>]
    type DeletedItem() = 
        member val ObjectId:String = null with get,set
        member val Class:String = null with get,set
        member val Name:String = null with get,set
        member val Type:String = null with get,set
        member val DeletedBy:String = null with get,set
        member val DeletedDate:String = null with get,set
        member val Created:String = null with get,set
        member val LastUpdated:String = null with get,set

    ///<summary>
    ///Handles undelete of data.
    ///</summary>
    [<AllowNullLiteral>]
    type Undelete() = 
        member val Workspace:String = null with get,set
        member val DeletedItems:ResizeArray<DeletedItem> = new ResizeArray<DeletedItem>() with get,set
        member val DeletedItemsToRestore:ResizeArray<DeletedItem> = new ResizeArray<DeletedItem>() with get,set

F# 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>