get_incident
Retrieve a specific incident by its ID or number to access full incident details, including optional additional information such as users, services, and assignments.
Instructions
Get a specific incident.
Args:
incident_id: The ID or number of the incident to retrieve.
query_model: Optional query parameters for additional information to include
Returns:
Incident details
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| incident_id | Yes | ||
| query_model | No |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| id | No | The ID of the incident | |
| title | Yes | A succinct description of the nature, symptoms, cause, or effect of the incident | |
| status | Yes | The current status of the incident | |
| service | Yes | The service the incident is on | |
| summary | No | A short summary of the incident | |
| priority | No | The priority of the incident (e.g. P1, P2) | |
| created_at | Yes | The time the incident was first triggered | |
| updated_at | Yes | The time the incident was last modified | |
| assignments | No | The users assigned to the incident | |
| resolved_at | No | The time the incident became resolved or null if the incident is not resolved | |
| incident_number | Yes | The number of the incident. This is unique across your account |