Get license plates by device
curl --request POST \
--url https://api2.rhombussystems.com/api/report/getLicensePlatesByDevice \
--header 'Content-Type: application/json' \
--header 'x-auth-apikey: <api-key>' \
--header 'x-auth-scheme: <x-auth-scheme>' \
--data '
{
"deviceUuid": "AAAAAAAAAAAAAAAAAAAAAA.v0",
"dateLocal": "<string>",
"timestampMs": 1
}
'import requests
url = "https://api2.rhombussystems.com/api/report/getLicensePlatesByDevice"
payload = {
"deviceUuid": "AAAAAAAAAAAAAAAAAAAAAA.v0",
"dateLocal": "<string>",
"timestampMs": 1
}
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({deviceUuid: 'AAAAAAAAAAAAAAAAAAAAAA.v0', dateLocal: '<string>', timestampMs: 1})
};
fetch('https://api2.rhombussystems.com/api/report/getLicensePlatesByDevice', 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/getLicensePlatesByDevice")
.header("x-auth-scheme", "<x-auth-scheme>")
.header("x-auth-apikey", "<api-key>")
.header("Content-Type", "application/json")
.body("{\n \"deviceUuid\": \"AAAAAAAAAAAAAAAAAAAAAA.v0\",\n \"dateLocal\": \"<string>\",\n \"timestampMs\": 1\n}")
.asString();{
"error": true,
"errorMsg": "<string>",
"licensePlateEvents": [
{
"deviceUuid": "AAAAAAAAAAAAAAAAAAAAAA.v0",
"eventTimestamp": 123,
"imageS3Key": "<string>",
"locationUuid": "AAAAAAAAAAAAAAAAAAAAAA",
"matchingLicensePlates": [
"<string>"
],
"name": "<string>",
"orgUuid": "AAAAAAAAAAAAAAAAAAAAAA",
"partialLicensePlates": [
"<string>"
],
"subLocationsHierarchyKey": "AAAAAAAAAAAAAAAAAAAAAA.AAAAAAAAAAAAAAAAAAAAAA.AAAAAAAAAAAAAAAAAAAAAA",
"thumbnailS3Key": "<string>",
"uuid": "AAAAAAAAAAAAAAAAAAAAAA",
"vehicleLicensePlate": "<string>"
}
],
"warningMsg": "<string>"
}Report Webservice
Get license plates by device
Get license plate counting events for a specified camera
POST
/
api
/
report
/
getLicensePlatesByDevice
Get license plates by device
curl --request POST \
--url https://api2.rhombussystems.com/api/report/getLicensePlatesByDevice \
--header 'Content-Type: application/json' \
--header 'x-auth-apikey: <api-key>' \
--header 'x-auth-scheme: <x-auth-scheme>' \
--data '
{
"deviceUuid": "AAAAAAAAAAAAAAAAAAAAAA.v0",
"dateLocal": "<string>",
"timestampMs": 1
}
'import requests
url = "https://api2.rhombussystems.com/api/report/getLicensePlatesByDevice"
payload = {
"deviceUuid": "AAAAAAAAAAAAAAAAAAAAAA.v0",
"dateLocal": "<string>",
"timestampMs": 1
}
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({deviceUuid: 'AAAAAAAAAAAAAAAAAAAAAA.v0', dateLocal: '<string>', timestampMs: 1})
};
fetch('https://api2.rhombussystems.com/api/report/getLicensePlatesByDevice', 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/getLicensePlatesByDevice")
.header("x-auth-scheme", "<x-auth-scheme>")
.header("x-auth-apikey", "<api-key>")
.header("Content-Type", "application/json")
.body("{\n \"deviceUuid\": \"AAAAAAAAAAAAAAAAAAAAAA.v0\",\n \"dateLocal\": \"<string>\",\n \"timestampMs\": 1\n}")
.asString();{
"error": true,
"errorMsg": "<string>",
"licensePlateEvents": [
{
"deviceUuid": "AAAAAAAAAAAAAAAAAAAAAA.v0",
"eventTimestamp": 123,
"imageS3Key": "<string>",
"locationUuid": "AAAAAAAAAAAAAAAAAAAAAA",
"matchingLicensePlates": [
"<string>"
],
"name": "<string>",
"orgUuid": "AAAAAAAAAAAAAAAAAAAAAA",
"partialLicensePlates": [
"<string>"
],
"subLocationsHierarchyKey": "AAAAAAAAAAAAAAAAAAAAAA.AAAAAAAAAAAAAAAAAAAAAA.AAAAAAAAAAAAAAAAAAAAAA",
"thumbnailS3Key": "<string>",
"uuid": "AAAAAAAAAAAAAAAAAAAAAA",
"vehicleLicensePlate": "<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 license plates by device.
RUUID with optional appended facet information
Example:
"AAAAAAAAAAAAAAAAAAAAAA.v0"
Report interval for filtering face events
Available options:
MINUTELY, QUARTERHOURLY, HOURLY, DAILY, WEEKLY, MONTHLY Deprecated input, use timestampMs instead
Datetime provided as a UNIX timestamp in milliseconds
Required range:
x >= 0Last modified on September 15, 2026