Nurama Developers

delete_message

DESTRUCTIVE — confirm with the user before calling.

Mutating tool: it changes data in Nurama. Available only when the key carries the matching scope.

DESTRUCTIVE — confirm with the user before calling. Restate the target (id + a human descriptor) and wait for explicit approval; do not invoke from inferred intent. No undo. Permanently delete a chat message. The message is marked as deleted and a placeholder remains in the feed so the conversation stays readable; connected clients receive a chatDeleteMessage event. Replies, reactions, and attachments tied to it are unreachable afterwards.

Input

PropertyTypeRequiredDescription
messageIdstringyesUUID of the message to delete.

JSON Schema

{
  "type": "object",
  "properties": {
    "messageId": {
      "type": "string",
      "description": "UUID of the message to delete."
    }
  },
  "required": [
    "messageId"
  ],
  "additionalProperties": false
}

On this page