Delete Custom Nodes (Reserved)


Overview

Delete one or more custom nodes from a custom view. This removes the node groupings but does not affect the underlying objects.

URI

DELETE /rest/applications/{application}/custom-views/nodes

Path parameters

application (string)

This parameter identifies the analyzed application. The application name must be properly encoded if required. Character back-quote is not allowed.

Request Body

{
    "id": "abc123-def456",
    "ids": ["node-xyz789", "node-uvw012"]
}

A JSON object specifying the view and nodes to delete:

PropertyTypeRequiredDescription
idstringYesThe ID of the custom view containing the nodes.
ids[]stringYesArray of node IDs to delete.

Responses

application/json

Success Response

{
    "success": "Custom nodes deleted successfully"
}

Error Response

{
    "error": "View ID is required"
}
{
    "error": "Node IDs are required"
}

JSON representation

PropertyTypeDescription
successstringConfirmation message on successful deletion.
errorstringError message if deletion fails.