curl --request POST \
--url https://api2.rhombussystems.com/api/event/searchMotionGrid \
--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>",
"timeUtcSecsList": [
123
],
"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/searchMotionGrid \
--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>",
"timeUtcSecsList": [
123
],
"warningMsg": "<string>"
}Documentation Index
Fetch the complete documentation index at: https://api-docs.rhombus.community/llms.txt
Use this file to discover all available pages before exploring further.
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.
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
OK
Response object containing motion grid search results.
Was this page helpful?