> 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/proxy/2.-update-profiles-proxy.md).

# 2. update profile's proxy

### **Request**

<table><thead><tr><th width="249">Method</th><th>URL</th></tr></thead><tbody><tr><td>POST</td><td>http://127.0.0.1:5555/update-proxy-profile</td></tr></tbody></table>

### **Body**

{% code lineNumbers="true" %}

```json
{
    "browser_update":[
        {
            "uuid":"99321674-b6c5-4004-a182-be6147beea3e",
            "proxy":"SOCKS5|192.168.30.51|8080|123|121"
        }
    ]
}
```

{% endcode %}

* uuid: UUID of profile
* proxy: Proxy wants to update to profile, in the format: **type|ip\_address|port|username|pass**

### &#x20;**Response**

{% code lineNumbers="true" %}

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

{% endcode %}
