Delete Object Post-it
Delete an existing Post-it associated with a specific object in an application.
The Post-it is identified by its unique id, passed in the request body.
URI
DELETE /rest/applications/{name}/objects/{id}/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.
id (integer)
The unique identifier for the object.
Request Body
{
"id": "9876adbqidqeqwehqe34623i2bef5"
}
| Property | Type | Required | Description |
|---|---|---|---|
| id | string | Yes | The Post-it identifier to delete. |
Responses
application/json
Example:
{
"message": "Post-it Deleted Successfully"
}
A request for a Post-it id that does not exist on this object returns a 404 response.