Skip to main content

Documentation Index

Fetch the complete documentation index at: https://docs.sertexity.com/llms.txt

Use this file to discover all available pages before exploring further.

Update Profile

Update personal information. Only provided fields are changed. PATCH /account/profile  ·  🔒 Auth required

Request

{
  "name": "Alice Smith",
  "timezone": "America/New_York",
  "language": "en"
}
FieldTypeDescription
namestring2–100 characters
timezonestringIANA timezone string
languagestringISO 639-1 code
Email cannot be changed here. Contact support to request an email update.

Response 200 OK

Returns the updated user object (same shape as Get Profile).

Example

curl -X PATCH https://api.sertexity.com/v1/account/profile \
  -H "Authorization: Bearer <access_token>" \
  -H "Content-Type: application/json" \
  -d '{"name":"Alice Smith","timezone":"America/New_York"}'