Skip to main content
POST
/
api
/
faceRecognition
/
matchmaker
/
updateFaceMatchingConfig
Update face matching configuration
curl --request POST \
  --url https://api2.rhombussystems.com/api/faceRecognition/matchmaker/updateFaceMatchingConfig \
  --header 'Content-Type: application/json' \
  --header 'x-auth-apikey: <api-key>' \
  --header 'x-auth-scheme: <x-auth-scheme>' \
  --data '
{
  "faceMatchConfidenceThreshold": 0.5
}
'
{
  "faceMatchConfidenceThreshold": 0.7
}

Authorizations

x-auth-apikey
string
header
required

Your API key for Rhombus.

Headers

x-auth-scheme
string
default:api-token
required

Authentication scheme indicator ("api-token").

Required string length: 9

Body

application/json

Request object for updating face matching configuration settings.

faceMatchConfidenceThreshold
number<float> | null

Minimum confidence level required for the system to automatically assign a match. If null, the system uses the built-in default.

Required range: 0 <= x <= 1

Response

200 - application/json

OK

Response object for updating face matching configuration settings.

faceMatchConfidenceThreshold
number<float> | null

Updated face match confidence threshold value

Example:

0.7