Skip to main content
GET
/
network
/
load_balancers
/
{load_balancer_uuid}
Get user load balancer by UUID
curl --request GET \
  --url https://api.tenbytecloud.com/v1/network/load_balancers/{load_balancer_uuid} \
  --header 'apikey: <api-key>'
{
  "uuid": "438ac62f-e97b-4ef0-8940-507b9e94af43",
  "display_name": "my LB",
  "billing_account_id": 130157,
  "private_address": "10.112.231.192",
  "forwarding_rules": [
    {
      "uuid": "b3f28feb-c91e-4601-a6b6-267fa98dc121",
      "protocol": "TCP",
      "source_port": 8080,
      "target_port": 8080
    }
  ],
  "targets": [
    {
      "target_uuid": "145cc106-e067-419a-85fd-333ded30f169",
      "target_type": "vm",
      "target_ip_address": "10.61.10.2"
    }
  ]
}

Authorizations

apikey
string
header
required

Path Parameters

load_balancer_uuid
string
required

Response

200 - application/json

Load balancer data

The response is of type object.