How to query only specific series value from the created measurement

Product/components used and version/fix level are you on:

Cumulocity 10.15

Detailed explanation of the problem:

I am creating measurements like below
{
“source”: {
“id”: “123”
},
“time”: “2023-02-06T05:17:04.198Z”,
“type”: “c8y_sensorMeasurement”,
“c8y_sensorMeasurement”: {
“T”: {
“value”: 26.7,
“unit”: “”
},
“P”: {
“value”: 32,
“unit”: “”
},
“H”: {
“value”: 100,
“unit”: “”
}
}
}

Is there any ways or APIs using that we can filter the data only for the series “T”?

Error messages / full error message screenshot / log fileL

Is your question related to the free trial, or to a production (customer) instance?

Production

Have you installed all the latest fixes for the products and systems you are using?

Yes

Hello Vachaspati,
you can use the series API from measurements: Cumulocity IoT - OpenAPI Specification

the request would look like: https://<TENANT_DOMAIN>/measurement/measurements/series?dateFrom=2023-04-17&dateTo=2023-04-18&source=123&series=c8y_sensorMeasurement.T

greets

Helmut

This topic was automatically closed 180 days after the last reply. New replies are no longer allowed.