> ## Documentation Index
> Fetch the complete documentation index at: https://docs.vertracloud.app/llms.txt
> Use this file to discover all available pages before exploring further.

# Update User Profile

> Updates the authenticated user's name, language and workspace e-mail preferences. Requires the account:write scope.

Send at least one field. An API key needs the `account:write` scope.

<ParamField body="name" type="string">
  The display name.
</ParamField>

<ParamField body="language" type="string">
  The interface language: `pt-br`, `en-us` or `es-es`. Any other value returns `400 INVALID_PAYLOAD`.
</ParamField>

<ParamField body="workspace_invites_enabled" type="boolean">
  Whether other people can invite you to their workspaces.
</ParamField>

### Response

<ResponseField name="response" type="object">
  The updated profile: `id`, `name`, `email`, `language`, `workspace_invites_enabled`,
  `plan_id`, `created_at` and `updated_at`.
</ResponseField>

### Error Responses

<ResponseField name="code" type="string">
  * `INVALID_PAYLOAD`: No field was sent, or a field has the wrong type (`400`).
</ResponseField>
