| POST | /{Workspace}/TsSend |
|---|
namespace Field2Office.API.Model.TimeSeries
open System
open System.Collections
open System.Collections.Generic
open System.Runtime.Serialization
open ServiceStack
open ServiceStack.DataAnnotations
[<AllowNullLiteral>]
type TimeSeries() =
member val Id:String = null with get,set
member val Date:Int64 = new Int64() with get,set
member val Uid:String = null with get,set
member val Oid:String = null with get,set
member val Tp:String = null with get,set
member val Data:String = null with get,set
///<summary>
///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
///</summary>
[<AllowNullLiteral>]
type TsSend() =
member val Workspace:String = null with get,set
member val Items:ResizeArray<TimeSeries> = new ResizeArray<TimeSeries>() with get,set
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
}
]
}