delete_error
Remove an error record from the Tribal Knowledge Service by specifying its UUID. Confirm deletion status based on record existence.
Instructions
Delete an error record.
Args:
error_id: UUID of the error record
Returns:
True if deleted, False if not found
Input Schema
Name | Required | Description | Default |
---|---|---|---|
error_id | Yes |
Input Schema (JSON Schema)
{
"properties": {
"error_id": {
"title": "Error Id",
"type": "string"
}
},
"required": [
"error_id"
],
"title": "delete_errorArguments",
"type": "object"
}