Get utilization timeline
Allows you to retrieve the requested number of time buckets between a given date range with the total minutes spent on each state for each bucket, including active spray time.
Path parameters
-
id
string Required id of the booth
GET
/api/booths/{id}/utilization_timeline
curl \
--request GET 'http://localhost:4000/api/booths/{id}/utilization_timeline?start=string&interval=string&end=string' \
--header "Authorization: $API_KEY"
Response examples (200)
{
"data": [
{
"duration": 42.0,
"modes": [
{
"mode": "Spray Mode",
"duration": 30
}
],
"timestamp": "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"
}