Skip to main content
POST
Update camera AI thresholds

Authorizations

x-auth-apikey
string
header
required

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

x-auth-scheme
enum<string>
default:api-token
required

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 to update AI thresholds for a camera.

cameraUuid
string<DeviceFacetUuid> | null
DeviceFacetUuid

RUUID with optional appended facet information

Example:

"AAAAAAAAAAAAAAAAAAAAAA.v0"

consecutiveHumanFilter
integer<int32> | null
int32

Require this many consecutive frames of seeing a human to include that human detection in results. Set to 1 to always include detections, or higher to avoid false positives due to transient motion like bugs/spiders/rain. Default is 2 consecutive frames.

Example:

3

consecutiveVehicleFilter
integer<int32> | null
int32

Require this many consecutive frames of seeing a vehicle to include that vehicle detection in results. Set to 1 to always include detections, or higher to avoid false positives due to transient motion like bugs/spiders/rain. Default is 2 consecutive frames.

Example:

3

faceConfidenceThreshold
number<float> | null
float

Confidence threshold for face detection. Set to 0 or null to use the default. Maximum range of 1. Default = 0.7

Example:

0.8

faceMatchConfidenceThreshold
number<float> | null
float

Confidence threshold for face matching (determining if two faces are the same person). Set to 0 or null to use the default. Maximum range of 1. Default = 0.7. We no longer support device specific face matching threshold. This property is deprecated and will be removed.

Example:

0.8

humanConfidenceThreshold
number<float> | null
float

Confidence threshold for human detection. Set to 0 or null to use the default. Maximum range of 1. Default = 0.6

Example:

0.7

lprConfidenceThreshold
number<float> | null
float

Confidence threshold for license plate detection and character recognition. Set to 0 or null to use the default. Maximum range of 1. Default = 0.8

Example:

0.9

maxEventDurationMs
integer<int32> | null
int32

Set the max event duration for an alert in milliseconds. Default is 30000, lowering down to 4000 will result in faster alert delivery but shorter alert clips.

Example:

15000

vehicleConfidenceThreshold
number<float> | null
float

Confidence threshold for vehicle detection. Set to 0 or null to use the default. Maximum range of 1. Default = 0.6

Example:

0.7

Response

200 - application/json

OK

Response indicating the result of updating camera AI thresholds.

error
boolean | null
errorMsg
string | null
warningMsg
string | null
Last modified on August 3, 2026