const timeseries = await client.timeseries.retrieve([
{ id: 123 },
{ externalId: 'abc' }
]);{
"items": [
{
"id": 4503599627370496,
"isString": true,
"type": "<string>",
"isStep": true,
"createdTime": 1730204346000,
"lastUpdatedTime": 1730204346000,
"externalId": "<string>",
"instanceId": {
"space": "<string>",
"externalId": "<string>"
},
"name": "<string>",
"metadata": {},
"unit": "<string>",
"unitExternalId": "<string>",
"assetId": 4503599627370496,
"description": "<string>",
"securityCategories": [
123
],
"dataSetId": 4503599627370496
}
]
}Required capabilities:
timeSeriesAcl:READ
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.
const timeseries = await client.timeseries.retrieve([
{ id: 123 },
{ externalId: 'abc' }
]);{
"items": [
{
"id": 4503599627370496,
"isString": true,
"type": "<string>",
"isStep": true,
"createdTime": 1730204346000,
"lastUpdatedTime": 1730204346000,
"externalId": "<string>",
"instanceId": {
"space": "<string>",
"externalId": "<string>"
},
"name": "<string>",
"metadata": {},
"unit": "<string>",
"unitExternalId": "<string>",
"assetId": 4503599627370496,
"description": "<string>",
"securityCategories": [
123
],
"dataSetId": 4503599627370496
}
]
}Access token issued by the CDF project's configured identity provider. Access token must be an OpenID Connect token, and the project must be configured to accept OpenID Connect tokens. Use a header key of 'Authorization' with a value of 'Bearer $accesstoken'. The token can be obtained through any flow supported by the identity provider.
List of the IDs of the time series to retrieve.
List of ID objects.
1 - 1000 elementsShow child attributes
Ignore IDs and external IDs that are not found
Response with a list of time series matching the IDs.
List of responses. The order matches the requests order.
Show child attributes
Was this page helpful?