v1

latestOpenAPI 3.0.0Apache 2.02026-07-17143274803.9 KB
network

List VPC networks

List VPC networks accessible by the organization.

get/api/v1/orgs/{orgId}/networks

Path parameters

orgIdinteger required

Organization identifier

Query parameters

cloudType'amazon' | 'google' | 'azure' required

Identifies the cloud provider

regionstring

Identifies the region of the VPC network (required when cloudType != azure)

resourceGroupstring

Identifies the resource group of the Azure virtual network (required when cloudType == azure)

Headers

secretIdstring required

Secret identification

Response

List of VPC networks

cidrsstring[] required

The IPv4 CIDR blocks assigned to the VPC network

idstring required

Identifier of the VPC network

namestring

Name of the VPC network

Example response

[
  {
    "name": "MyVPC",
    "cidrs": [
      "10.50.0.0/16",
      "10.50.0.0/16"
    ],
    "id": "vpc-a01106c2"
  }
]