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
using System;
using System.Collections;
using System.Collections.Generic;
using System.Runtime.Serialization;
using ServiceStack;
using ServiceStack.DataAnnotations;
using Field2Office.API.Model.Undelete;

namespace Field2Office.API.Model.Undelete
{
    public partial class DeletedItem
    {
        public virtual string ObjectId { get; set; }
        public virtual string Class { get; set; }
        public virtual string Name { get; set; }
        public virtual string Type { get; set; }
        public virtual string DeletedBy { get; set; }
        public virtual string DeletedDate { get; set; }
        public virtual string Created { get; set; }
        public virtual string LastUpdated { get; set; }
    }

    ///<summary>
    ///Handles undelete of data.
    ///</summary>
    public partial class Undelete
    {
        public Undelete()
        {
            DeletedItems = new List<DeletedItem>{};
            DeletedItemsToRestore = new List<DeletedItem>{};
        }

        public virtual string Workspace { get; set; }
        public virtual List<DeletedItem> DeletedItems { get; set; }
        public virtual List<DeletedItem> DeletedItemsToRestore { get; set; }
    }

}

C# Undelete DTOs

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

HTTP + CSV

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/csv
Content-Type: text/csv
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"}]}