Delete Site Priority Policy Local Prefix Association (v2.1)
DELETE/v2.1/api/tenants/:tenant_id/sites/:site_id/prioritypolicylocalprefixes/:prefix_id
Delete an existing site priority policy local prefix association.
Request
Path Parameters
tenant_id stringrequired
The tenant ID.
site_id stringrequired
The ID of the site.
prefix_id stringrequired
The priority policy local prefix ID.
Responses
- 200
- 400
Successful Operation
- application/json
- Schema
- Example (from schema)
Schema
id string
The ID of the site prefix.
ipv4_prefixes string[]
The individual IP address.
ipv6_prefixes string[]
Lists the IPv6 address.
prefix_id string
The IP Prefix ID that associates with a site.
tags string[]
A information field that can be added to identify the site prefix. Maximum 10 unique tags of length 1024 each are allowed.
{
"id": "string",
"ipv4_prefixes": [
"string"
],
"ipv6_prefixes": [
"string"
],
"prefix_id": "string",
"tags": [
"string"
]
}
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_NOT_FOUND"
}
]
}
}
Loading...