Update User
PATCH
/users/{user_id}
const url = 'https://example.com/users/2489E9AD-2EE2-8E00-8EC9-32D5F69181C0';const options = { method: 'PATCH', headers: {'Content-Type': 'application/json'}, body: '{"date_of_birth":"2026-04-15","display_name":"example","height_cm":1,"timezone":"example","weight_kg":1}'};
try { const response = await fetch(url, options); const data = await response.json(); console.log(data);} catch (error) { console.error(error);}curl --request PATCH \ --url https://example.com/users/2489E9AD-2EE2-8E00-8EC9-32D5F69181C0 \ --header 'Content-Type: application/json' \ --data '{ "date_of_birth": "2026-04-15", "display_name": "example", "height_cm": 1, "timezone": "example", "weight_kg": 1 }'Update self-service profile fields (display name, timezone, date of birth, height, weight).
Does not allow changing email, password, or any auth-related fields.
Parameters
Section titled “Parameters”Path Parameters
Section titled “Path Parameters”user_id
required
User Id
string format: uuid
Request Bodyrequired
Section titled “Request Bodyrequired”Media typeapplication/json
UserUpdate
Self-service profile updates. Deliberately excludes email, password, and any auth-related fields — those have their own dedicated flows.
object
Examplegenerated
{ "date_of_birth": "2026-04-15", "display_name": "example", "height_cm": 1, "timezone": "example", "weight_kg": 1}Responses
Section titled “Responses”Successful Response
Media typeapplication/json
UserRead
object
created_at
required
Created At
string format: date-time
email
required
Email
string
id
required
Id
string format: uuid
is_active
Is Active
boolean
is_admin
required
Is Admin
boolean
preferences
Preferences
object
key
additional properties
any
timezone
required
Timezone
string
updated_at
required
Updated At
string format: date-time
Example
{ "is_active": true}Validation Error
Media typeapplication/json
HTTPValidationError
object
detail
Detail
Array<object>
ValidationErrorobject
loc
required
Location
Array
msg
required
Message
string
type
required
Error Type
string
Examplegenerated
{ "detail": [ { "loc": [ "example" ], "msg": "example", "type": "example" } ]}