Series

Ingest a series for a metric

post

Post a time point or multiple time points (series) to a metric. User authorization is not required instead provide the integration key of your metric.

Path parameters
keystringRequired

integration key of resource

Body
one ofOptional

Can either be a single time point, omitting timestamp field is allowed as it will be replaced with now() - or a series of multiple time points

or
Responses
202
The time points have been accepted
post
POST /api/series/{key} HTTP/1.1
Host: 
Content-Type: application/json
Accept: */*
Content-Length: 25

{
  "timestamp": 1,
  "value": 1
}
202

The time points have been accepted

No content

Was this helpful?