🚧 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/searchMotionGridWithActivities \
--header 'Content-Type: application/json' \
--header 'x-auth-apikey: <api-key>' \
--header 'x-auth-scheme: <x-auth-scheme>' \
--data '
{
"deviceUuid": "AAAAAAAAAAAAAAAAAAAAAA.v0",
"endTimeUtcSecs": 1641081600,
"searchCells": [
{
"col": 5,
"row": 3
}
],
"startTimeUtcSecs": 1640995200
}
'{
"error": true,
"errorMsg": "<string>",
"timeUtcSecsToActivityMap": {},
"warningMsg": "<string>"
}Search motion grid for motion events occuring in specified grid cells. Note: motion grid is a 64x36 grid of cells with the upper left hand corner being (0, 0)
curl --request POST \
--url https://api2.rhombussystems.com/api/event/searchMotionGridWithActivities \
--header 'Content-Type: application/json' \
--header 'x-auth-apikey: <api-key>' \
--header 'x-auth-scheme: <x-auth-scheme>' \
--data '
{
"deviceUuid": "AAAAAAAAAAAAAAAAAAAAAA.v0",
"endTimeUtcSecs": 1641081600,
"searchCells": [
{
"col": 5,
"row": 3
}
],
"startTimeUtcSecs": 1640995200
}
'{
"error": true,
"errorMsg": "<string>",
"timeUtcSecsToActivityMap": {},
"warningMsg": "<string>"
}Your API key for Rhombus.
Authentication scheme indicator ("api-token").
9Request object for searching motion grid data with activity information.
RUUID with optional appended facet information
"AAAAAAAAAAAAAAAAAAAAAA.v0"
End time as a UNIX timestamp in seconds
1641081600
List of motion grid cells to include in the search
Show child attributes
Start time as a UNIX timestamp in seconds
1640995200
Was this page helpful?