Status 200
// return format = 0
{
"status": "success",
"data": {
"columns": [
{"length": 4096, "name": "MIN", "type": 5},
{"length": 4096, "name": "MAX", "type": 5}
],
"samples": [
{
"tag_name": "tag_02",
"data": [
{
"MAX": "2021-07-06 12:12:27",
"MIN": "2021-06-16 11:36:44"
}
]
},
{
"tag_name": "tag_01",
"data": [
{
"MAX": "2021-07-06 12:12:25",
"MIN": "2021-06-15 17:52:35"
}
]
}
]
}
}
// return format = 1
{
"status": "success",
"data": {
"columns": [
{"length": 4096, "name": "MIN", "type": 5},
{"length": 4096, "name": "MAX", "type": 5}
],
"samples": [
{
"tag_name": "tag_02",
"data": {
"MAX": ["2021-07-06 12:12:27"],
"MIN": ["2021-06-16 11:36:44"]
}
},
{
"tag_name": "tag_01",
"data": {
"MAX": ["2021-07-06 12:12:25"],
"MIN": ["2021-06-15 17:52:35"]
}
}
]
}
} |