Field Squared API Services

<back to all web services

FlexibleDataObject

Represents a set or rules what the system reads to take a particular set of actions. These dtos allow transfer of that data from the client to the server and vice versa.

The following routes are available for this service:
POST/{Workspace}/Integration
using System;
using System.Collections;
using System.Collections.Generic;
using System.Runtime.Serialization;
using ServiceStack;
using ServiceStack.DataAnnotations;
using Field2Office.API.Model.Integration;

namespace Field2Office.API.Model.Integration
{
    ///<summary>
    ///Represents a set or rules what the system reads to take a particular set of actions. These dtos allow transfer of that data from the client to the server and vice versa.
    ///</summary>
    public partial class FlexibleDataObject
    {
        public FlexibleDataObject()
        {
            Data = new Dictionary<string, string>{};
        }

        public virtual string Workspace { get; set; }
        public virtual Dictionary<string, string> Data { get; set; }
        public virtual string RequestData { get; set; }
        public virtual Stream RequestStream { get; set; }
        public virtual bool IsXml { get; set; }
    }

}

C# FlexibleDataObject 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}/Integration HTTP/1.1 
Host: dev.fieldsquared.com 
Accept: text/jsv
Content-Type: text/jsv
Content-Length: length

{
	Workspace: String,
	Data: 
	{
		String: String
	},
	IsXml: False
}