Skip to main content

facerec_search_people_names

Search face recognition person names.

  • Method: POST
  • Path: /facerec_search_people_names

Request Body

{
"search_text": "alex"
}
FieldTypeDescription
search_textstringText to match against person names.

Success Response

{
"success": true,
"message": null,
"data": {
"matches": [
{
"external_id": "person-001",
"display_name": "Alex Carter"
}
]
}
}
FieldTypeDescription
data.matchesobject[]Matching people.
data.matches[].external_idstringPerson identifier.
data.matches[].display_namestringPerson display name.