Retrieve time series

Retrieves one or more time series by ID or external ID. The response returns the time series in the same order as in the request.

Securityoidc-token or oauth2-client-credentials or oauth2-open-industrial-data or oauth2-auth-code
Request
Request Body schema: application/json
required

List of the IDs of the time series to retrieve.

required
Array of QueryWithInternalId (object) or QueryWithExternalId (object) [ 1 .. 1000 ] items unique

List of ID objects.

ignoreUnknownIds
boolean
Default: false

Ignore IDs and external IDs that are not found

Responses
200

Response with a list of time series matching the IDs.

400

IDs not found.

422

Duplicate IDs found. Retry request, keeping only one instance of each duplicated ID.

post/timeseries/byids
Request samples
application/json
{
  • "items": [
    • {
      }
    ],
  • "ignoreUnknownIds": false
}
Response samples
application/json
{
  • "items": [
    • {
      }
    ]
}