Home > Documentation

Update a person's physical appearance

This endpoint lets you update the physical appearance information of a person.

You can update any combination of physical attributes such as height, weight, build, facial features, and other physical characteristics. All fields are optional, however any fields that is not explicitely passed as arguments will be set to null.

Update a person's physical appearance

This endpoint updates the physical appearance information of a person. It will return the updated person in the response.

URL parameters

person integer required

The ID of the person.

Query parameters

height string

The height of the person (e.g., '6'0"').

weight string

The weight of the person (e.g., '175 lbs').

build string

The body build of the person (e.g., 'Athletic', 'Slim').

skin_tone string

The skin tone of the person.

face_shape string

The face shape of the person (e.g., 'Oval', 'Round').

eye_color string

The eye color of the person.

eye_shape string

The eye shape of the person (e.g., 'Almond', 'Round').

hair_color string

The hair color of the person.

hair_type string

The hair type of the person (e.g., 'Straight', 'Curly').

hair_length string

The hair length of the person (e.g., 'Short', 'Long').

facial_hair string

Description of the person's facial hair, if any.

scars string

Description of any scars the person may have.

tatoos string

Description of any tattoos the person may have.

piercings string

Description of any piercings the person may have.

distinctive_marks string

Any distinctive marks or features not covered by other fields.

glasses string

Whether the person wears glasses and details about them.

dress_style string

The typical dress style of the person.

voice string

Description of the person's voice characteristics.

Response attributes

id integer

The ID of the person.

object string

The object type. Always 'person'.

name string

The full name of the person.

first_name string

The first name of the person.

last_name string

The last name of the person.

middle_name string

The middle name of the person.

nickname string

The nickname of the person.

maiden_name string

The maiden name of the person.

prefix string

The name prefix of the person.

suffix string

The name suffix of the person.

age object

The age information of the person.

how_we_met string

How you met this person.

can_be_deleted boolean

Whether the person can be deleted.

is_listed boolean

Whether the person is listed.

physical_appearance object

The physical appearance information of the person.

created_at integer

The date and time the object was created, in Unix timestamp format.

updated_at integer

The date and time the object was last updated, in Unix timestamp format.

PATCH /api/persons/{person}/physical-appearance
{
"data": {
"id": 1 ,
"object": "person" ,
"name": "Chandler Bing" ,
"first_name": "Chandler" ,
"last_name": "Bing" ,
"middle_name": "Muriel" ,
"nickname": "Chan Chan Man" ,
"maiden_name": "Bing" ,
"prefix": "Mr." ,
"suffix": "Jr." ,
"age": {
"age_type": "exact" ,
"age": 35
},
"how_we_met": "College roommate with Ross" ,
"can_be_deleted": true ,
"is_listed": true ,
"physical_appearance": {
"height": "6'0\"" ,
"weight": "175 lbs" ,
"build": "Average" ,
"skin_tone": "Fair" ,
"face_shape": "Oval" ,
"eye_color": "Blue" ,
"eye_shape": "Almond" ,
"hair_color": "Brown" ,
"hair_type": "Straight" ,
"hair_length": "Short" ,
"facial_hair": "Clean-shaven" ,
"scars": "None" ,
"tatoos": "None" ,
"piercings": "None" ,
"distinctive_marks": "None" ,
"glasses": "Occasionally" ,
"dress_style": "Business casual" ,
"voice": "Sarcastic tone"
},
"created_at": 1709251200 ,
"updated_at": 1709251200
}
}
Taylor Swift being happy

Please login to vote.

It's free and will help us improve the page.

Taylor will be proud of you.

Last updated on April 5, 2025.