update_user_profile
Update a team member's organization-profile fields: first name, last name, country, timezone, and job title. Only the fields you provide are changed (PATCH semantics). Role changes are not supported here — use the dedicated role-change tool. The organization is fixed by your context — never pass an organization id. You cannot target a user more privileged than yourself.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| country | No | Updated country. | |
| timezone | No | Updated timezone (IANA or Windows id). | |
| job_title | No | Updated job title. | |
| last_name | No | Updated last name. | |
| first_name | No | Updated first name. | |
| org_user_id | Yes | Id of the OrganizationUser to update. | |
| idempotency_key | No | Optional caller-supplied key; retrying with the same key returns the original result instead of acting twice. |