List Face
Paginated list of registered faces.
GET /api/face
Query Parameters: current_page=1 / reference_id= / external_id=
Using Query Parameters, it is possible to return the base64 of the image used in the face recognition vector.
200 Response
{
"param": {
"total_faces": 1
},
"data": [
{
"reference_id": "TQtnngDLAF99d8xQ",
"external_id": "yourID",
"name": "John Doe",
"email": null,
"phone": null,
"document": null,
"company": null,
"company_document": null,
"country": null,
"city": null,
"address": null,
"gmt_created_at": "2025-05-11 00:31:18",
"base64":"" //Only using Query Parameters
}
]
}