| POST | /{Workspace}/TsSend |
|---|
import java.math.*
import java.util.*
import net.servicestack.client.*
/**
* 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
*/
open class TsSend
{
var Workspace:String? = null
var Items:ArrayList<TimeSeries> = ArrayList<TimeSeries>()
}
open class TimeSeries
{
var Id:String? = null
var Date:Long? = null
var Uid:String? = null
var Oid:String? = null
var Tp:String? = null
var Data:String? = null
}
To override the Content-type in your clients, use the HTTP Accept Header, append the .jsv suffix or ?format=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
}
]
}