Compute
List External IPs
Retrieves a list of all external IP addresses in your workspace. External IPs are public IP addresses that can be attached to links or load balancers, making your resources accessible from the internet.
get/compute/v2/thr1/workspaces/{workspaceUUID}/external-ips
Path parameters
workspaceUUIDstring required
UUID of the workspace
Response
Successfully retrieved the list of external IP addresses in your workspace. The response includes details about each IP such as its address, status, and the resource it's attached to (link or load balancer).
Example response
{
"apiVersion": "compute/v2",
"items": [
{
"apiVersion": "compute/v2",
"kind": "ExternalIP",
"metadata": {
"resourceVersion": "519597875",
"uid": "00000000-0000-0000-0000-000000000000",
"workspace": "00000000-0000-0000-0000-000000000000"
},
"spec": {
"ip": "192.168.1.100"
},
"status": {
"gateway": "192.168.1.1"
}
}
],
"kind": "ExternalIPList"
}Changes
No recorded changes to this endpoint across all 1 revision of this API.