curl --request POST \
--url https://api2.rhombussystems.com/api/report/getThresholdCrossingEventsForDevice \
--header 'Content-Type: application/json' \
--header 'x-auth-apikey: <api-key>' \
--header 'x-auth-scheme: <x-auth-scheme>' \
--data '
{
"deviceUuid": "AAAAAAAAAAAAAAAAAAAAAA.v0",
"endTimeMs": 1640998800000,
"lastEvaluatedKey": "<string>",
"maxPageSize": 100,
"startTimeMs": 1640995200000
}
'{
"error": true,
"errorMsg": "<string>",
"lastEvaluatedKey": "<string>",
"thresholdCrossingEvents": [
{
"objectId": 123,
"timestampMs": 123
}
],
"warningMsg": "<string>"
}Get threshold crossing events for device
curl --request POST \
--url https://api2.rhombussystems.com/api/report/getThresholdCrossingEventsForDevice \
--header 'Content-Type: application/json' \
--header 'x-auth-apikey: <api-key>' \
--header 'x-auth-scheme: <x-auth-scheme>' \
--data '
{
"deviceUuid": "AAAAAAAAAAAAAAAAAAAAAA.v0",
"endTimeMs": 1640998800000,
"lastEvaluatedKey": "<string>",
"maxPageSize": 100,
"startTimeMs": 1640995200000
}
'{
"error": true,
"errorMsg": "<string>",
"lastEvaluatedKey": "<string>",
"thresholdCrossingEvents": [
{
"objectId": 123,
"timestampMs": 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 getting threshold crossing events for a specific device.
HUMAN, VEHICLE, FACE, LPR, POSE, CLIP_EMBED, UNKNOWN RUUID with optional appended facet information
"AAAAAAAAAAAAAAAAAAAAAA.v0"
End timestamp of query period in epoch MS
1640998800000
Should be null on first request and populated on subsequent requests if provided in the response to retrieve the next page
Max number of results to return. Response's lastEvaluatedKey will be null if no additional results are available
100
Start timestamp of query period in epoch MS
1640995200000
OK
Response object for getting threshold crossing events for a specific device.
If a max page size was specified and there are additional results that can be retrieved this will be non-null and should be supplied in the next request to retrieve the next page of results
List of threshold crossing events for the device
Show child attributes
Was this page helpful?