Get booth's latest values for tags at a given timestamp
Allows you to retrieve the latest values for a given set of tags for a specific booth before a given timestamp
Path parameters
-
id
string Required id of the booth
Query parameters
-
before
string Required ISO8601 formatted date before which the latest tags should be retrieved
GET
/api/booths/{id}/latest_values_at
curl \
--request GET 'http://localhost:4000/api/booths/{id}/latest_values_at?tags=string&before=string' \
--header "Authorization: $API_KEY"
Response examples (200)
{
"data": {
"tag_name": {
"name": "string",
"system_time": "string",
"value": "string"
}
}
}
Response examples (400)
{
"error": "Error Reason"
}
Response examples (400)
{
"error": "Error Reason"
}
Response examples (401)
{
"error": "Error Reason"
}
Response examples (401)
{
"error": "Error Reason"
}