> For the complete documentation index, see [llms.txt](https://cloudblast.gitbook.io/cloudblast-api/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://cloudblast.gitbook.io/cloudblast-api/api-endpoints/remove-extra-ip.md).

# /remove-extra-ip

## Remove extra IP

<mark style="color:green;">`POST`</mark>[`https://console.cloudblast.io/api/public/remove-extra-ip`](http://cloudblast.local/api/public/send-action-server)

This endpoint is designed to remove an extra IP address from a virtual machine.

**Body**

| Name        | Type   | Description          |
| ----------- | ------ | -------------------- |
| `authKey`   | string | Your API key         |
| `ip`        | string | IP address to remove |
| `server_id` | int    | ID of your server    |

**Response**

{% tabs %}
{% tab title="200" %}

```json
{
  "result": true,
  "message": "IP Address removed successfully"
}
```

{% endtab %}

{% tab title="500" %}

```json
{
    "status": false,
    "error": "You cannot remove the main IP Address"
}
```

{% endtab %}
{% endtabs %}
