Delete Saved View (RESERVED)
RESERVED: The keyword RESERVED annotation means that the API is available for use but is not yet part of the officially supported specification. Its behavior, interface, or output may change in future releases without backward compatibility guarantees.
Overview
Delete a saved view by its ID. This removes the view node and all related canvas, comment, group, and vignette nodes. Edge references (SetBySaveView) are cleaned up, and custom IS_IN_SAVEVIEW relationships are removed.
URI
DELETE /rest/applications/{name}/saved-views/{id}
Path parameters
name (string)
This parameter identifies the analyzed application. The application name must be properly encoded if it is required. Character back-quote is not allowed.
id (string)
The Neo4j element ID of the saved view to delete.
Responses
application/json
Success Response
{
"message": "View Deleted Successfully"
}
Error Response
View not found:
{
"code": 1,
"message": "view not found",
"status": 404
}
Application not found:
{
"code": 1,
"message": "'UnknownApp' application is not found",
"status": 404
}
JSON representation
Response
| Property | Type | Description |
|---|---|---|
| message | string | Success confirmation message. |