> For the complete documentation index, see [llms.txt](https://docs.hidemium.io/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.hidemium.io/use-cases/api-automation-v2/interact-profile/4.-update-note.md).

# 4. Update note

Update note of profile

### **Request**

<table><thead><tr><th width="249">Method</th><th>URL</th></tr></thead><tbody><tr><td>PUT</td><td>http://127.0.0.1:5555/browser/update-note</td></tr></tbody></table>

#### **Body**

{% code lineNumbers="true" %}

```json
{
   "profile_uuid": "992bd6f1-0a4c-40b2-88c0-d6ae54db7347",
   "note": "Notes of a profile are recorded here!"
}
```

{% endcode %}

* profile\_uuid: UUID of profile
* note: Content notes

### **Response**

{% code lineNumbers="true" %}

```json
{
    "type": "success",
    "title": "Update successfully.",
    "content": []
}
```

{% endcode %}
