Delete View Post-it (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.
Delete an existing Post-it associated with a specific view within an application and domain.
This operation requires a JSON payload containing the Post-it’s id.
URI
DELETE /rest/applications/{name}/views/{view}/post-it
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.
view (string)
The viewType of the view
Enum: [application, module, transaction, datagraph, level, saved, architecture, projectStructure, service]
Request Body
{
"id": "98765"
}
| Property | Type | Required | Description |
|---|---|---|---|
| id | string | Yes | Identifier of the Post-it to delete. |
Responses
application/json
Example:
{
"message": "Post-it Deleted Successfully"
}
A request for a Post-it id that does not exist on this view returns a 404 response.