🚧 The Rhombus Developer Documentation is currently in beta. For the official documentation, please visit docs.rhombus.com.
curl --request POST \
--url https://api2.rhombussystems.com/api/report/getThresholdCrossingEvents \
--header 'Content-Type: application/json' \
--header 'x-auth-apikey: <api-key>' \
--header 'x-auth-scheme: <x-auth-scheme>' \
--data '
{
"crossingObject": "HUMAN",
"devices": [
"AAAAAAAAAAAAAAAAAAAAAA"
],
"endTimeMs": 1640998800000,
"startTimeMs": 1640995200000
}
'{
"deviceToThresholdCrossingEventMap": {},
"error": true,
"errorMsg": "<string>",
"warningMsg": "<string>"
}Get the raw threshold crossing events for a group of cameras over a period of time
curl --request POST \
--url https://api2.rhombussystems.com/api/report/getThresholdCrossingEvents \
--header 'Content-Type: application/json' \
--header 'x-auth-apikey: <api-key>' \
--header 'x-auth-scheme: <x-auth-scheme>' \
--data '
{
"crossingObject": "HUMAN",
"devices": [
"AAAAAAAAAAAAAAAAAAAAAA"
],
"endTimeMs": 1640998800000,
"startTimeMs": 1640995200000
}
'{
"deviceToThresholdCrossingEventMap": {},
"error": true,
"errorMsg": "<string>",
"warningMsg": "<string>"
}Your API key for Rhombus.
Authentication scheme indicator ("api-token").
9Request object for getting threshold crossing events.
HUMAN, VEHICLE, FACE, LPR, POSE, CLIP_EMBED, UNKNOWN List of device UUIDs to get threshold crossing events for
base 64 (url-safe) uuid string
"AAAAAAAAAAAAAAAAAAAAAA"
End time in milliseconds
1640998800000
Start time in milliseconds
1640995200000
Was this page helpful?