CloudBlast API's
  • Welcome
  • How to get the API Key
  • 🌐API ENDPOINTS
    • /create-server
    • /send-action-server
    • /delete-server
    • /reinstall-server
    • /add-extra-ip
    • /remove-extra-ip
    • /servers/details
    • /servers/all
  • 🆔ID LISTS
    • Plans List
    • Locations List
    • OS List
Powered by GitBook
On this page
  1. API ENDPOINTS

/add-extra-ip

Previous/reinstall-serverNext/remove-extra-ip

Last updated 9 months ago

Add Extra IP to VM

POST

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"
    ]
}
{
  "error": "Server not found or does not belong to the authenticated user."
}
🌐
https://console.cloudblast.io/api/public/add-extra-ip