Skip to main content
POST
/
api
/
faceRecognition
/
matchmaker
/
createFaceMatchmakerFromSighting
Create face matchmaker from sighting
curl --request POST \
  --url https://api2.rhombussystems.com/api/faceRecognition/matchmaker/createFaceMatchmakerFromSighting \
  --header 'Content-Type: application/json' \
  --header 'x-auth-apikey: <api-key>' \
  --header 'x-auth-scheme: <x-auth-scheme>' \
  --data '
{
  "faceEventUuid": "AAAAAAAAAAAAAAAAAAAAAA",
  "personUuid": "AAAAAAAAAAAAAAAAAAAAAA"
}
'
{
  "faceMatchmaker": {
    "createdOn": "2024-01-01T00:00:00Z",
    "id": "face_12345",
    "orgUuid": "AAAAAAAAAAAAAAAAAAAAAA",
    "personUuid": "AAAAAAAAAAAAAAAAAAAAAA",
    "uploaded": true
  }
}

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 creating a face matchmaker from a face event sighting.

faceEventUuid
string<RUUID> | null

base 64 (url-safe) uuid string

Example:

"AAAAAAAAAAAAAAAAAAAAAA"

personUuid
string<RUUID> | null

base 64 (url-safe) uuid string

Example:

"AAAAAAAAAAAAAAAAAAAAAA"

Response

200 - application/json

OK

Response object for creating a face matchmaker from a face event sighting.

faceMatchmaker
object

External face matchmaker object containing face recognition matchmaker data and metadata.