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 'package:servicestack/servicestack.dart';

class DeletedItem implements IConvertible
{
    String? ObjectId;
    String? Class;
    String? Name;
    String? Type;
    String? DeletedBy;
    String? DeletedDate;
    String? Created;
    String? LastUpdated;

    DeletedItem({this.ObjectId,this.Class,this.Name,this.Type,this.DeletedBy,this.DeletedDate,this.Created,this.LastUpdated});
    DeletedItem.fromJson(Map<String, dynamic> json) { fromMap(json); }

    fromMap(Map<String, dynamic> json) {
        ObjectId = json['ObjectId'];
        Class = json['Class'];
        Name = json['Name'];
        Type = json['Type'];
        DeletedBy = json['DeletedBy'];
        DeletedDate = json['DeletedDate'];
        Created = json['Created'];
        LastUpdated = json['LastUpdated'];
        return this;
    }

    Map<String, dynamic> toJson() => {
        'ObjectId': ObjectId,
        'Class': Class,
        'Name': Name,
        'Type': Type,
        'DeletedBy': DeletedBy,
        'DeletedDate': DeletedDate,
        'Created': Created,
        'LastUpdated': LastUpdated
    };

    getTypeName() => "DeletedItem";
    TypeContext? context = _ctx;
}

/**
* Handles undelete of data.
*/
class Undelete implements IConvertible
{
    String? Workspace;
    List<DeletedItem>? DeletedItems;
    List<DeletedItem>? DeletedItemsToRestore;

    Undelete({this.Workspace,this.DeletedItems,this.DeletedItemsToRestore});
    Undelete.fromJson(Map<String, dynamic> json) { fromMap(json); }

    fromMap(Map<String, dynamic> json) {
        Workspace = json['Workspace'];
        DeletedItems = JsonConverters.fromJson(json['DeletedItems'],'List<DeletedItem>',context!);
        DeletedItemsToRestore = JsonConverters.fromJson(json['DeletedItemsToRestore'],'List<DeletedItem>',context!);
        return this;
    }

    Map<String, dynamic> toJson() => {
        'Workspace': Workspace,
        'DeletedItems': JsonConverters.toJson(DeletedItems,'List<DeletedItem>',context!),
        'DeletedItemsToRestore': JsonConverters.toJson(DeletedItemsToRestore,'List<DeletedItem>',context!)
    };

    getTypeName() => "Undelete";
    TypeContext? context = _ctx;
}

TypeContext _ctx = TypeContext(library: 'dev.fieldsquared.com', types: <String, TypeInfo> {
    'DeletedItem': TypeInfo(TypeOf.Class, create:() => DeletedItem()),
    'Undelete': TypeInfo(TypeOf.Class, create:() => Undelete()),
    'List<DeletedItem>': TypeInfo(TypeOf.Class, create:() => <DeletedItem>[]),
});

Dart 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>