🚧 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/event/getMotionHeatMap \
--header 'Content-Type: application/json' \
--header 'x-auth-apikey: <api-key>' \
--header 'x-auth-scheme: <x-auth-scheme>' \
--data '
{
"deviceUuid": "AAAAAAAAAAAAAAAAAAAAAA.v0",
"endTimeUtcSecs": 1641081600,
"startTimeUtcSecs": 1640995200
}
'{
"countGrid": [
[
123
]
],
"error": true,
"errorMsg": "<string>",
"warningMsg": "<string>"
}Get aggregated motion heatmap for specified time period and camera. Divides a camera’s resolution into a 36x64 grid and counts the number of motion events that occurred in each cell.
curl --request POST \
--url https://api2.rhombussystems.com/api/event/getMotionHeatMap \
--header 'Content-Type: application/json' \
--header 'x-auth-apikey: <api-key>' \
--header 'x-auth-scheme: <x-auth-scheme>' \
--data '
{
"deviceUuid": "AAAAAAAAAAAAAAAAAAAAAA.v0",
"endTimeUtcSecs": 1641081600,
"startTimeUtcSecs": 1640995200
}
'{
"countGrid": [
[
123
]
],
"error": true,
"errorMsg": "<string>",
"warningMsg": "<string>"
}Your API key for Rhombus.
Authentication scheme indicator ("api-token").
9Request object for retrieving motion grid data for a device.
RUUID with optional appended facet information
"AAAAAAAAAAAAAAAAAAAAAA.v0"
End time as a UNIX timestamp in seconds
1641081600
Start time as a UNIX timestamp in seconds
1640995200
OK
Response object containing motion grid counts for a device.
Matrix where each cell is a fraction of the camera's resolution and stores the total number of motion events that occurred in the given timeframe
Matrix where each cell is a fraction of the camera's resolution and stores the total number of motion events that occurred in the given timeframe
Matrix where each cell is a fraction of the camera's resolution and stores the total number of motion events that occurred in the given timeframe
Was this page helpful?