# Delete Profile

### <mark style="background-color:yellow;">**Delete Profile**</mark>

```
DELETE http://127.0.0.1:2268/profiles/:profileID
```

### Example

* Curl example

```
curl DELETE http://127.0.0.1:2268/profiles/:profileID
```

* Javascript example

```
const hidemyacc = new Hidemyacc();
const response = await hidemyacc.delete("615d6c4b2a151505fe6ba060");
```

### <mark style="background-color:yellow;">Success response</mark>

**Success response - `Success 200`**

| Name | Type     | Description         |
| ---- | -------- | ------------------- |
| data | `Object` | Profile information |

### <mark style="background-color:yellow;">Success response example</mark>

**Success response example - `Success-Example`**

```
Status code: 200 OK
{
    "code": 1
}

```

### <mark style="background-color:yellow;">Error response</mark>

**Error response - `Error 4xx`**

<table><thead><tr><th width="197.33333333333331">Name</th><th width="189">Type</th><th>Description</th></tr></thead><tbody><tr><td>402</td><td></td><td>API supported from Team plan</td></tr></tbody></table>

### <mark style="background-color:yellow;">Error response example</mark>

**Error response example - `Response (example):`**

```
Status code 402: Payment required
{
    "code": 0
}
```
