Field Squared API Services

<back to all web services

TsSend

To filter and return all time series objects modified since a date and time, use the query parameter modifiedsince = X where X = YYYY-MM-DDTHH:MM:SSZ

The following routes are available for this service:
POST/{Workspace}/TsSend
import Foundation
import ServiceStack

/**
* To filter and return all time series objects modified since a date and time, use the query parameter modifiedsince = X where X = YYYY-MM-DDTHH:MM:SSZ 
*/
public class TsSend : Codable
{
    public var workspace:String
    public var items:[TimeSeries] = []

    required public init(){}
}

public class TimeSeries : Codable
{
    public var id:String
    public var date:Int
    public var uid:String
    public var oid:String
    public var tp:String
    public var data:String

    required public init(){}
}


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

{
	Workspace: String,
	Items: 
	[
		{
			Id: String,
			Date: 0,
			Uid: String,
			Oid: String,
			Tp: String,
			Data: String
		}
	]
}