Delete Local Prefix Filter (v2.0)
DELETE/v2.0/api/tenants/:tenant_id/localprefixfilters/:id
Delete a specific local prefix filter.
Request
Path Parameters
tenant_id stringrequired
The tenant ID.
id stringrequired
The ID of the local prefix filter.
Responses
- 200
- 400
Successful Operation
- application/json
- Schema
- Example (from schema)
Schema
description
Description of the local prefix filter.
id string
Id of the local prefix filter.
name stringrequired
Name of the local prefix filter.
{
"id": "string",
"name": "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": "PREFIXFILTER_NAME_REQUIRED"
},
{
"code": "PREFIXFILTER_INVALID_DESCRIPTION"
},
{
"code": "PREFIXFILTER_INVALID_NAME"
}
]
}
}
Loading...