get_incident
Retrieve detailed incident data, including event timeline, affected applications, impact assessment, and resolution status, using project and incident IDs for precise tracking and analysis.
Instructions
Get detailed information about a specific incident.
Retrieves comprehensive incident information including:
Timeline of events
Affected applications
Impact assessment
Resolution status
Args: project_id: Project ID incident_id: Incident ID
Input Schema
Name | Required | Description | Default |
---|---|---|---|
incident_id | Yes | ||
project_id | Yes |
Input Schema (JSON Schema)
{
"properties": {
"incident_id": {
"title": "Incident Id",
"type": "string"
},
"project_id": {
"title": "Project Id",
"type": "string"
}
},
"required": [
"project_id",
"incident_id"
],
"type": "object"
}