Remove a list of domains from Cyber Shield Allow List.
Example Request:
POST /api/v1/cybershield/allow-list-remove-domains
{
"domains": [
"sample.domain.com"
]
}
This request removes the existing entry for the domain sample.domain.com from the Cyber Shield Allow List. - Only the line with the specified domain is removed. - Other entries in the Allow List remain unchanged.
Parameters:
domains(Type: List, Mandatory) - A list of fully qualified domain names (FQDN) to be removed.Each domain must be unique within the list.
Body parameter
{
"domains": [
"string"
]
}
Parameters
Name | In | Type | Required | Description |
|---|---|---|---|---|
body | body | true | none | |
» domains | body | [string] | false | none |
Responses
Status | Meaning | Description | Schema |
|---|---|---|---|
200 | OK | None | |
400 | Bad Request | ||
401 | Unauthorized | None | |
429 | Too Many Requests | None | |
500 | Internal Server Error |
{
"errorDetails": {
"property1": [
{
"errorCode": "string",
"message": "string",
"params": {
"property1": {},
"property2": {}
}
}
],
"property2": [
{
"errorCode": "string",
"message": "string",
"params": {
"property1": {},
"property2": {}
}
}
]
},
"errorMessage": "string",
"statusError": "string"
}
Response Schema
To perform this operation, you must be authenticated by means of one of the following methods: oauth