TypeScript
const options = {method: 'GET'}; fetch('https://api.example.com/v1/regions/{region}/compute/networks', options) .then(res => res.json()) .then(res => console.log(res)) .catch(err => console.error(err));
{ "success": true, "data": [ { "id": "<string>", "name": "<string>", "cidr": "<string>", "type": "overlay", "status": "active", "cniPlugin": "<string>", "metadata": {}, "createdAt": "2023-11-07T05:31:56Z" } ] }
List networks including topology, CNI catalog, and provider networks
Region identifier
Filter by network type
overlay
provider
external
List of networks
true
Show child attributes
Was this page helpful?