Create a person record

Description

The method creates a new person record in the user’s list (default or specified). It supports multiple parameters for flexible integration and photo upload. Access requires a JWT token in the header or in the request body.

Request format

  • HTTP method: POST
  • URL: /person/create
  • Content-Type: multipart/form-data
  • Authorization: required

Request parameters

ParameterTypeWhere passedRequiredDescription
tokenstringHeader, form-data✅*Permanent user token. If a temporary token is not specified in the «token» header, this parameter is required in the request body
list_idstringform-dataIdentifier of the list where the person is added. By default, the primary list is used
group_idstringform-dataIdentifier of the data source group
source_idstringform-dataIdentifier of the data source
yawstring/numberform-dataLeft/right face rotation angle
pitchstring/numberform-dataUp/down face rotation angle
feature_checkarray<string/object>form-dataList of detectable facial features
new_person_thresholdanyform-dataThreshold for new face detection
new_person_square_minanyform-dataMinimum face side size in pixels
new_person_yaw_maxanyform-dataMaximum yaw angle for a new face
new_person_pitch_maxanyform-dataMaximum pitch angle for a new face
new_person_threshold_scorestring/numberform-dataMatching threshold by score
fieldsarrayform-dataBusiness fields for the record
multibooleanform-dataProcess all faces in the image
replace_on_foundbooleanform-dataID of the record to replace
thumbbooleanform-dataReturn thumbnail
normalizedbooleanform-dataReturn normalized image
bboxbooleanform-dataReturn face bounding box coordinates
bbox_probooleanform-dataReturn 4-point bounding box
drop_imagebooleanform-dataDo not save image in history
embedding_onlybooleanform-dataReturn only embedding
embeddingstringform-dataVector representation of the face
  • One of the token transfer methods is required.

Example request (cURL)

curl -X POST "https://api.enface.ai/person/create" 
  -H "Authorization: Bearer jwt.temporary.token" 
  -F "list_id=3fa85f64-5717-4562-b3fc-2c963f66afa6" 
  -F "group_id=3fa85f64-5717-4562-b3fc-2c963f66afa6" 
  -F "source_id=3fa85f64-5717-4562-b3fc-2c963f66afa6" 
  -F "fields=John" 
  -F "fields=Doe" 
  -F "multi=true" 
  -F "thumb=true" 
  -F "image=@/path/to/photo.jpg"

Response examples

Success (200 OK)
{
  "faces_total": 0,
  "message": "image format is unknown",
  "spent": 97,
  "status": "ok"
}
Operation completed, but no records added (201)
{
  "faces_total": 0,
  "matches": [],
  "message": "image format is unknown",
  "persons": [],
  "persons_new": 0,
  "persons_total": 0,
  "spent": 400,
  "status": "ok"
}
Error (400 Invalid schema)
{
  "message": "invalid schema",
  "status": "error"
}
Error (401 Unauthorized request)
{
  "message": "access denied",
  "status": "failed"
}