Update a face
Assigns a face to a specific person, or detaches it from its current person (set person_id to null). This is the right tool for ‘this face is Alice’ or ‘this face isn’t Bob after all’.
Currently only the person_id field is mutable. To create a brand-new identity first, call create_person; to delete the face detection entirely, use delete_face.
Path Parameters
Face ID (with face_ prefix) of the face detection to update.
Query Parameters
Library the face belongs to. Optional if the user has a single library; required when they have multiple.
Body
Target person ID (with person_ prefix) to assign this face to. Pass null to detach the face from its current person without deleting either. Get IDs from list_people; use create_person first if the target identity doesn't exist yet.
Response
Successful Response
Represents a detected face in an asset with facial recognition data.
Unique face identifier with 'face_' prefix
ID of the asset containing this face
Face location as {x, y, w, h} coordinates in pixels
How this face was added: 'automatic' for detector-found faces, 'manual' for user-drawn face boxes.
automatic, manual When this face was detected and recorded
When this face record was last updated
ID of the person this face belongs to (if identified)
Detector confidence on a 0-1 scale; higher is more confident among faces detected under the same configuration (values are not comparable across detector generations). Null on legacy faces without a stored score and on manually added faces.
For video files, timestamp in milliseconds when face appears
Asset variants for this face: 'thumbnail' with face crop
Cluster-assignment diagnostics for this face. Populated only when include=cluster_assignment is requested on the faces endpoint; null otherwise. See ClusterAssignmentResponse for the shape.