Is there a way to perform multiple resample methods in one API request? For example, to sum the first variable while returning the average of the second variable, request:
POST https://industrial.api.ubidots.com/api/v1.6/data/stats/resample/
{
“variables”: [“variable1”, “variable2”],
“aggregation”: [“sum”, “mean”],
“period”: “1H”,
“join_dataframes”: true,
}