update_profile
Partially update an existing espresso profile by ID, merging your changes with the current data while preserving the profile image and avoiding duplicates.
Instructions
Update an existing profile in place by ID. Fetches the current profile, merges your changes on top, and saves back — preserving the profile image and avoiding duplicates. Pass only the fields you want to change in updates; everything else is kept from the existing profile.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| updates | Yes | Partial profile object with only the fields you want to change. E.g. { "temperature": 91 } or { "display": { "description": "..." } }. The profile id and display.image are always preserved from the existing profile. | |
| profile_id | Yes | UUID of the profile to update |