curl --request PATCH \
--url https://api.example.com/api/people/{person_id} \
--header 'Content-Type: application/json' \
--data '
{
"name": "<string>",
"birth_date": "2023-12-25",
"is_hidden": true,
"is_favorite": true,
"thumbnail_face_id": "<string>"
}
'{
"id": "<string>",
"is_hidden": true,
"is_favorite": true,
"created_at": "2023-11-07T05:31:56Z",
"updated_at": "2023-11-07T05:31:56Z",
"name": "<string>",
"birth_date": "2023-12-25",
"asset_count": 123,
"thumbnail_face_id": "<string>",
"asset_urls": {}
}Updates metadata on an existing person. Only the fields included in the request body are changed. Typical use: assigning a name (‘name this face cluster “Alice”’) or choosing a better thumbnail.
This tool does not move faces between people — use update_face with a new person_id for that.
curl --request PATCH \
--url https://api.example.com/api/people/{person_id} \
--header 'Content-Type: application/json' \
--data '
{
"name": "<string>",
"birth_date": "2023-12-25",
"is_hidden": true,
"is_favorite": true,
"thumbnail_face_id": "<string>"
}
'{
"id": "<string>",
"is_hidden": true,
"is_favorite": true,
"created_at": "2023-11-07T05:31:56Z",
"updated_at": "2023-11-07T05:31:56Z",
"name": "<string>",
"birth_date": "2023-12-25",
"asset_count": 123,
"thumbnail_face_id": "<string>",
"asset_urls": {}
}Documentation Index
Fetch the complete documentation index at: https://docs.gumnut.ai/llms.txt
Use this file to discover all available pages before exploring further.
Person ID (with person_ prefix) of the person to update.
New display name. Omit to leave unchanged.
New birth date (ISO 8601 date). Omit to leave unchanged.
Hide or unhide this person. Omit to leave unchanged.
Mark or unmark this person as a favorite. Omit to leave unchanged.
New thumbnail face ID for this person. Omit to leave unchanged. Get face IDs from list_faces.
Successful Response
Represents a person identified through face clustering and recognition.
Unique person identifier with 'person_' prefix
Whether this person should be hidden from the UI
Whether this person is marked as a favorite
When this person record was created
When this person record was last updated
Optional name assigned to this person
Optional birth date of this person
Number of unique photos this person appears in, or null if not computed
ID of the face resource used as this person's thumbnail
Asset variants from this person's thumbnail face. May be null when embedded in an AssetResponse; use /api/people endpoints for full person data.
Show child attributes