🚧 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/report/getCountReport \
--header 'Content-Type: application/json' \
--header 'x-auth-apikey: <api-key>' \
--header 'x-auth-scheme: <x-auth-scheme>' \
--data '
{
"endDate": "2024-01-31",
"interval": "MINUTELY",
"scope": "REGION",
"startDate": "2024-01-01",
"type": "CROWD",
"uuid": "AAAAAAAAAAAAAAAAAAAAAA"
}
'{
"error": true,
"errorMsg": "<string>",
"timeSeriesDataPoints": [
{
"dateLocal": "<string>",
"dateUtc": "<string>",
"eventCountMap": {},
"reportingDevicesMap": {}
}
],
"warningMsg": "<string>"
}Use /getCountReportV2 instead
curl --request POST \
--url https://api2.rhombussystems.com/api/report/getCountReport \
--header 'Content-Type: application/json' \
--header 'x-auth-apikey: <api-key>' \
--header 'x-auth-scheme: <x-auth-scheme>' \
--data '
{
"endDate": "2024-01-31",
"interval": "MINUTELY",
"scope": "REGION",
"startDate": "2024-01-01",
"type": "CROWD",
"uuid": "AAAAAAAAAAAAAAAAAAAAAA"
}
'{
"error": true,
"errorMsg": "<string>",
"timeSeriesDataPoints": [
{
"dateLocal": "<string>",
"dateUtc": "<string>",
"eventCountMap": {},
"reportingDevicesMap": {}
}
],
"warningMsg": "<string>"
}Your API key for Rhombus.
Authentication scheme indicator ("api-token").
9Request object for getting count reports.
End date for the report
"2024-01-31"
Report interval for filtering face events
MINUTELY, QUARTERHOURLY, HOURLY, DAILY, WEEKLY, MONTHLY Scope of the report to reset
REGION, DEVICE, LOCATION, ORG Start date for the report
"2024-01-01"
Type of report to receive
CROWD, PEOPLE, FACES, MOTION, BANDWIDTH, VEHICLES, LICENSEPLATES, ALERTS, AM_VERIFICATION, DWELL base 64 (url-safe) uuid string
"AAAAAAAAAAAAAAAAAAAAAA"
Was this page helpful?