DewaVPS

Get private network IPs

GET
/network/vswitch/{vswitch_uuid}/ips

Retrieve the list of IPs assigned within a private network.

Authorization

ApiKeyAuth
x-apikey<token>

In: header

Path Parameters

vswitch_uuid*string

UUID of the private network

Formatuuid

Response Body

application/json

curl -X GET "https://api.dewavps.com/v1/network/vswitch/497f6eca-6276-4993-bfeb-53cbbbba6f08/ips"
{
  "message": "Private Network ips",
  "data": {
    "data": [
      {
        "ip_address": "string",
        "vm_uuid": "5afb774f-8216-4579-b1f7-69c6de398477",
        "hostname": "string"
      }
    ],
    "page": {
      "total": 0,
      "count": 0,
      "per_page": 0,
      "current_page": 0,
      "total_pages": 0
    }
  }
}