Update User Profile

Update the current user’s own profile.

Only fields present in the request are changed; omitted fields keep their current values. This endpoint always updates the authenticated user - there is no request body field to target a different user, and it never creates a new user record.

Authentication

AuthorizationBearer

API key or access token, sent as Authorization: Bearer <token>. The simplest option: create an API key in your dashboard under Settings, then paste it here.

Request

This endpoint expects an object.
namestring or nullOptional
biostring or nullOptional
subscribed_to_newsletterbooleanOptionalDefaults to false
job_roleenum or nullOptional

Response

User updated successfully
emailstringformat: "email"
namestring or null
idstringformat: "uuid"
is_onboardingboolean
biostring or nullOptional
avatar_urlstring or nullOptional
subscribed_to_newsletterbooleanOptionalDefaults to false
job_roleenum or nullOptional

Errors

401
Unauthorized Error
422
Unprocessable Entity Error
500
Internal Server Error