# update_profile

> Update this account's contact profile.

- Tier: W
- Required scope: write:account
- Annotations: idempotentHint
- Docs: https://api.inleed.com/tools/update-profile

## Description

Update this account's contact profile. Send only the fields you want to change: `name`, `company`, `country` (2-letter code), `phone`, `locale`. Returns the full updated profile. This cannot change the login email — that is `request_email_change`, a verified confirmation-tier flow; sending `email` here does nothing.

## Input schema

- `name` — string. New full name on the account.
- `company` — string. New company name, or empty to clear it.
- `country` — string. New country as a 2-letter ISO code, e.g. SE.
- `phone` — string. New phone number (digits, spaces, +, -, () only).
- `locale` — string. New interface locale, e.g. sv or en.

## Example call

```json
{
  "name": "update_profile",
  "arguments": {}
}
```

