🚧 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 Rhombus API key. Must be accompanied by the x-auth-scheme header set to api-token (or partner-api-token for partner endpoints).
Authentication scheme identifier. Use api-token for standard API key authentication, partner-api-token for partner API key authentication. Must be paired with the x-auth-apikey header containing your API key.
api-token, api, partner-api-token, partner-api Request 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?