get_error_by_id
Retrieve detailed error records by their unique ID to analyze and resolve programming issues efficiently. Integrates with the Tribal Knowledge Service for enhanced error management and learning.
Instructions
Get an error record by its ID.
Args:
error_id: UUID of the error record
Returns:
The error record or None 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": "get_error_by_idArguments",
"type": "object"
}