> 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/2.-create-profile-customize.md).

# 2. Create profile customize

### **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/create-profile-custom</td></tr></tbody></table>

#### **Body**

<pre class="language-json" data-line-numbers><code class="lang-json">// The fields are not required
{
<strong>  
</strong>  "os": "win",  //win , mac , lin , android
  "userAgent": "",
  "canvas": "noise",  //"noise" or "off"
  "webGLImage": "true", //"true" or "false"
  "audioContext": "true",   //"true" or "false"
  "webGLMetadata": "true",   //"true" or "false"
  "clientRectsEnable": "true",    //"true" or "false"
  "languages": "en-us,vi;q=0.9",
  "resolution": "1024x768",
  "proxy": "HTTP|192.168.1.1|22|username|password",
  "name" : "", //tên profile
  "checkname" : true, //true|false thêm điều kiện check trùng tên khi tạo
  "folder_name" : "ten folder", //check nếu có thì dùng folder đó ko thì sẽ tạo
  "cookies" : [] //mảng cookies
}
</code></pre>

### **Response**

{% code lineNumbers="true" %}

```json
{
    "type": "success",
    "title": "Profile has been created successfully.",
    "content": {
       //content information 
    }
}
```

{% endcode %}
