> 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/5.-update-name.md).

# 5. Update name

### **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-name</td></tr></tbody></table>

#### **Body**

{% code lineNumbers="true" %}

```json
{
   "profile_uuid": "992bd6f1-0a4c-40b2-88c0-d6ae54db7347", //required
   "data": "David James", //required
   "restore_session": false //optional
}
```

{% endcode %}

* profile\_uuid: UUID of profile
* data: Name of profile
* ```
  restore_session: restore browser session
  ```

### **Response**

{% code lineNumbers="true" %}

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

{% endcode %}
