Get tag history for a booth
Allows you to retrieve the history of a specific tag for a particular booth under your account within a certain date range.
Path parameters
-
id
string Required id of the booth
Query parameters
-
tag
string Required the name of the tag for which to get historic data
-
start
string Required an ISO8601 formatted date to query data from
-
datapoints
string the number of datapoints to return
-
end
string Required an ISO8601 formatted date to query data until
GET
/api/booths/{id}/history
curl \
--request GET 'http://localhost:4000/api/booths/{id}/history?tag=string&start=string&end=string' \
--header "Authorization: $API_KEY"
Response examples (200)
{
"data": [
{
"value": 0.5,
"system_time": "2023-09-06T00:00:00Z"
}
]
}
Response examples (400)
{
"error": "Error Reason"
}
Response examples (400)
{
"error": "Error Reason"
}
Response examples (401)
{
"error": "Error Reason"
}
Response examples (401)
{
"error": "Error Reason"
}