Delete WAN Network (v2.1)
DELETE/sdwan/v2.1/api/wannetworks/:wan_network_id
Delete an existing WAN network.
Request
Path Parameters
wan_network_id stringrequired
The ID of the WAN network.
Responses
- 200
- 400
Successful Operation
- application/json
- Schema
- Example (from schema)
Schema
description
The description of the WAN network. Maz size = 256.
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.
tags string[]
An information field that can be added to identify the WAN network. Maximum 10 unique tags of length 1024 each are allowed.
type stringrequired
Possible values: [PUBLIC_WAN
, PRIVATE_WAN
]
The type of WAN network.
{
"id": "string",
"name": "string",
"provider_as_numbers": [
0
],
"tags": [
"string"
],
"type": "PUBLIC_WAN"
}
Bad Request
- application/json
- Schema
- Example (from schema)
- Example
Schema
- Array [
- ]
_error ErrorResponse[]
code string
The error code.
message string
The error message.
{
"_error": [
{
"code": "string",
"message": "string"
}
]
}
{
"value": {
"_error": [
{
"code": "SITE_WAN_NETWORK_EXISTS"
}
]
}
}
Loading...