| POST | /{Workspace}/TsSend |
|---|
export class TimeSeries
{
public Id: string;
public Date: number;
public Uid: string;
public Oid: string;
public Tp: string;
public Data: string;
public constructor(init?: Partial<TimeSeries>) { (Object as any).assign(this, init); }
}
/** @description 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 */
export class TsSend
{
public Workspace: string;
public Items: TimeSeries[];
public constructor(init?: Partial<TsSend>) { (Object as any).assign(this, init); }
}
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
}
]
}