Summary
Deletes Network Groups
Description
Deletes Network Groups based on provided IDs.
Route
DELETE /policy-manager/network-groups
Roles
admin
other
readonly
apiread
Parameters
DetailsExampleSchema
Name |
Type |
Required |
Description |
ids |
array |
yes |
IDs the networks. |
Copied to Clipboard
{
"ids": [
"5cb08d4f16640f00182c3890"
]
}
Copied to Clipboard
{
"type": "object",
"properties": {
"ids": {
"title": "ids",
"type": "array",
"items": {
"type": "string",
"examples": [
"5cb08d4f16640f00182c3890"
]
},
"examples": [
[
"5cb08d4f16640f00182c3890"
]
]
}
},
"required": [
"ids"
],
"additionalProperties": false
}
Return
DetailsExampleSchema
Name |
Type |
Description |
response |
object |
Results of delete action |
Copied to Clipboard
{
"status": "failure",
"message": "fugiat culpa id",
"n": -52376630
}
Copied to Clipboard
{
"title": "response",
"type": "object",
"properties": {
"status": {
"type": "string",
"enum": [
"success",
"failure"
]
},
"message": {
"type": "string"
},
"n": {
"type": "integer"
}
}
}