# Stop Profile

### **Stop Profile**

```
POST http://127.0.0.1:2268/profiles/stop/:profileID
```

### Example

* Curl example

```
curl -X POST http://127.0.0.1:2268/profiles/stop/:profileID
```

* Javascript example

```
const hidemyacc = new Hidemyacc();
const response = await hidemyacc.stop("652e8e982293bc496ec38ecb");
```

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

**Success response - `Success 200`**

| Name  | Type     | Description                 |
| ----- | -------- | --------------------------- |
| port  | `Number` | PORT auto                   |
| wsUrl | `String` | Used to integrate Puppeteer |

### <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="212.33333333333331">Name</th><th width="213">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
}
```
