Create persona record

POST /person/create


Description

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


Request format

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

Query Parameters

ParameterTypePassed inRequiredDescription
tokenstringHeader, form-data✅*Permanent user token. If a temporary token is not specified in the “token” header, then this parameter is required in the request body
list_idstringform-dataID of the list to which the person is added. The main list is used by default
group_idstringform-dataData source group ID
source_idstringform-dataData source ID
yawstring/numberform-dataFace rotation angle left/right
pitchstring/numberform-dataFace rotation angle up/down
feature_checkarray<string/object>form-dataList of features detected on the face
new_person_thresholdanyform-dataThreshold for matching a new face
new_person_square_minanyform-dataMinimum face bounding box side length 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-dataScore matching threshold
fieldsarrayform-dataBusiness fields to record
multibooleanform-dataProcess all faces in the photo
replace_on_foundbooleanform-dataID for replacing the record
thumbbooleanform-dataReturn thumbnail
normalizedbooleanform-dataReturn normalized image
bboxbooleanform-dataReturn face bounding box coordinates
bbox_probooleanform-dataReturn 4 bounding box points
drop_imagebooleanform-dataDo not save the image in history
embedding_onlybooleanform-dataReturn only the embedding
embeddingstringform-dataVector representation of the face

* One of the token transfer options is mandatory.


Example Request (cURL)

curl -X POST "https://api.neuro-vision.ru/v1/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"

Example Answers

Success (200 OK)
{
  "faces_total": 0,
  "message": "image format is unknown",
  "spent": 97,
  "status": "ok"
}
Operation completed, but no records were 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"
}