Get WAN Networks (v2.0)
GET/sdwan/v2.0/api/wannetworks
List all the tenant WAN networks.
Responses
- 200
Successful Operation
- application/json
- Schema
- Example (from schema)
Schema
- Array [
- ]
count int32
The total number.
id string
The ID.
items WANNetwork[]
id string
The ID of the WAN network.
name stringrequired
The name of the WAN network. Max size = 128.
provider_as_numbers integer[]
The provider AS numbers of the WAN network.
type stringrequired
Possible values: [PUBLIC_WAN
, PRIVATE_WAN
]
The type of WAN network.
{
"count": 0,
"id": "string",
"items": [
{
"id": "string",
"name": "string",
"provider_as_numbers": [
0
],
"type": "PUBLIC_WAN"
}
]
}
Loading...