Skip to main content
Version: 3.0.0

List Person

GET

  https://api.apptenticate.com/api/v3/biometrics/recognizer/persons/



This request allows you to obtain the list of People within the project assigned for the Recognizer service

Request example

Request
curl --location 'https://api.apptenticate.com/api/v3/biometrics/recognizer/persons/' \
--header 'Authorization: Bearer <jwt_token>' \

Response data

If the person is created successfully, the service will return a JSON object with the following structure:

Pagination structure

FieldTypeDescription
countfileNumber of personas registered in the project
nextstringURL to the next set of results. If there are no more results it is null
previousstringURL to the previous set of results. If there are no previous results it is null
resultsstringList of personas registered in the project.

Estructura de la persona

FieldTypeDescription
idfileUnique identifier within Recognizer, this is the one that allows you to update or delete the person
citizen_idstringIdentity card or some unique identifier of the person
namestringPerson's name
imagestringPerson's image URL
is_blockedboolIndicates whether the person is blocked or not
created_atstringPerson's creation date
agreed_termsboolIndicates if the person accepted the Recognizer service terms and conditions

Example of successful response

status_code: 201
{
"count": 2,
"next": null,
"previous": null,
"results": [
{
"id": 54275286,
"citizen_id": "8-123-12345",
"name": "Jhon Doe",
"image": "https://img.com/media/faces/JhonDoe.jpeg",
"is_blocked": false,
"created_at": "2023-11-13T10:39:21.243991-05:00",
"agreed_terms": false
},
{
"id": 44646711,
"citizen_id": "2343047",
"name": "Ana Smith",
"image": "https://img.com/media/faces/AnaSmith.jpeg",
"is_blocked": false,
"created_at": "2023-09-12T15:39:42.471251-05:00",
"agreed_terms": true
}
]
}