facerec_person_details
Get details for one face recognition person profile.
- Method:
POST - Path:
/facerec_person_details
Request Body
{
"person_id": "person-001"
}
| Field | Type | Description |
|---|---|---|
person_id | string | Person identifier to look up. |
Success Response
{
"success": true,
"message": null,
"data": {
"person_id": "person-001",
"person_name": "Alex Carter",
"groups": [],
"images": []
}
}
| Field | Type | Description |
|---|---|---|
data.person_id | string | Person identifier. |
data.person_name | string | Person display name. |
data.groups | object[] | Groups associated with the person. |
data.groups[].external_id | string | Group identifier. |
data.groups[].display_name | string | Group display name. |
data.images | object[] | Images associated with the person. |
data.images[].path | string | Image path recorded for the person. |
data.images[].image | string | Optional base64-encoded image. |