delete-message
Remove a specific message by its unique ID using this tool, enabling efficient message management in Zulip workspaces. Simplifies message deletion for streamlined communication.
Instructions
Delete a message by its ID.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
message_id | Yes | Unique ID of the message to delete |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"message_id": {
"description": "Unique ID of the message to delete",
"type": "number"
}
},
"required": [
"message_id"
],
"type": "object"
}