Get org wide batch threshold crossing count report
curl --request POST \
--url https://api2.rhombussystems.com/api/report/getThresholdCrossingCountReportForOrg \
--header 'Content-Type: application/json' \
--header 'x-auth-apikey: <api-key>' \
--header 'x-auth-scheme: <x-auth-scheme>' \
--data '
{
"dedupe": true,
"endTimeMs": 1640998800000,
"startTimeMs": 1640995200000,
"timeZone": "America/Los_Angeles"
}
'import requests
url = "https://api2.rhombussystems.com/api/report/getThresholdCrossingCountReportForOrg"
payload = {
"dedupe": True,
"endTimeMs": 1640998800000,
"startTimeMs": 1640995200000,
"timeZone": "America/Los_Angeles"
}
headers = {
"x-auth-scheme": "<x-auth-scheme>",
"x-auth-apikey": "<api-key>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {
'x-auth-scheme': '<x-auth-scheme>',
'x-auth-apikey': '<api-key>',
'Content-Type': 'application/json'
},
body: JSON.stringify({
dedupe: true,
endTimeMs: 1640998800000,
startTimeMs: 1640995200000,
timeZone: 'America/Los_Angeles'
})
};
fetch('https://api2.rhombussystems.com/api/report/getThresholdCrossingCountReportForOrg', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));HttpResponse<String> response = Unirest.post("https://api2.rhombussystems.com/api/report/getThresholdCrossingCountReportForOrg")
.header("x-auth-scheme", "<x-auth-scheme>")
.header("x-auth-apikey", "<api-key>")
.header("Content-Type", "application/json")
.body("{\n \"dedupe\": true,\n \"endTimeMs\": 1640998800000,\n \"startTimeMs\": 1640995200000,\n \"timeZone\": \"America/Los_Angeles\"\n}")
.asString();{
"crossingCounts": [
{
"egressCount": 123,
"ingressCount": 123,
"timestampMs": 123
}
],
"error": true,
"errorMsg": "<string>",
"warningMsg": "<string>"
}Report Webservice
Get org wide batch threshold crossing count report
Get org wide batch threshold crossing count report
POST
/
api
/
report
/
getThresholdCrossingCountReportForOrg
Get org wide batch threshold crossing count report
curl --request POST \
--url https://api2.rhombussystems.com/api/report/getThresholdCrossingCountReportForOrg \
--header 'Content-Type: application/json' \
--header 'x-auth-apikey: <api-key>' \
--header 'x-auth-scheme: <x-auth-scheme>' \
--data '
{
"dedupe": true,
"endTimeMs": 1640998800000,
"startTimeMs": 1640995200000,
"timeZone": "America/Los_Angeles"
}
'import requests
url = "https://api2.rhombussystems.com/api/report/getThresholdCrossingCountReportForOrg"
payload = {
"dedupe": True,
"endTimeMs": 1640998800000,
"startTimeMs": 1640995200000,
"timeZone": "America/Los_Angeles"
}
headers = {
"x-auth-scheme": "<x-auth-scheme>",
"x-auth-apikey": "<api-key>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {
'x-auth-scheme': '<x-auth-scheme>',
'x-auth-apikey': '<api-key>',
'Content-Type': 'application/json'
},
body: JSON.stringify({
dedupe: true,
endTimeMs: 1640998800000,
startTimeMs: 1640995200000,
timeZone: 'America/Los_Angeles'
})
};
fetch('https://api2.rhombussystems.com/api/report/getThresholdCrossingCountReportForOrg', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));HttpResponse<String> response = Unirest.post("https://api2.rhombussystems.com/api/report/getThresholdCrossingCountReportForOrg")
.header("x-auth-scheme", "<x-auth-scheme>")
.header("x-auth-apikey", "<api-key>")
.header("Content-Type", "application/json")
.body("{\n \"dedupe\": true,\n \"endTimeMs\": 1640998800000,\n \"startTimeMs\": 1640995200000,\n \"timeZone\": \"America/Los_Angeles\"\n}")
.asString();{
"crossingCounts": [
{
"egressCount": 123,
"ingressCount": 123,
"timestampMs": 123
}
],
"error": true,
"errorMsg": "<string>",
"warningMsg": "<string>"
}Authorizations
Your Rhombus API key. Must be accompanied by the x-auth-scheme header set to api-token (or partner-api-token for partner endpoints).
Headers
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.
Available options:
api-token, api, partner-api-token, partner-api Body
application/json
Request object for getting org wide threshold crossing count reports.
Size of the report buckets
Available options:
QUARTER_HOUR, HOUR, DAY, WEEK, MONTH Available options:
HUMAN, VEHICLE, FACE, LPR, POSE, CLIP_EMBED, UNKNOWN Whether to deduplicate the results
Example:
true
End time in milliseconds
Example:
1640998800000
Start time in milliseconds
Example:
1640995200000
String of timezone for bucketing
Example:
"America/Los_Angeles"
Last modified on September 15, 2026