/add-extra-ip

Add Extra IP to VM

POST https://console.cloudblast.io/api/public/add-extra-ip

This endpoint allows users to add an additional IP address to an existing virtual private server (VPS). Please note that for security reasons the add IP function is rate-limited, and subject to limits.

Body

Name
Type
Description

authKey

string

Your API Key

extra_ips

int

Number of extra IPs to assign

server_id

int

ID of the server

Response

{
    "status": true,
    "message": "IP Address added successfully",
    "addresses": [
        "x.x.x.x",
        "x.x.x.x"
    ]
}

Last updated