Documentation Index
Fetch the complete documentation index at: https://mintlify.com/rajnandan1/kener/llms.txt
Use this file to discover all available pages before exploring further.
Incident object
Unique numeric identifier.
Incident title.
UTC Unix timestamp (seconds) when the incident started. Truncated to the start of the minute.
UTC Unix timestamp (seconds) when the incident ended.
null if the incident is still open.Current incident state. One of
INVESTIGATING, IDENTIFIED, MONITORING, RESOLVED.How the incident was created.
API for incidents created via this API, MANUAL for dashboard-created incidents.Type of incident record. Typically
INCIDENT.Monitors affected by this incident.
ISO 8601 timestamp of creation.
ISO 8601 timestamp of last update.
List incidents
Filter to incidents that started at or after this UTC Unix timestamp (seconds).
Filter to incidents that started at or before this UTC Unix timestamp (seconds).
Comma-separated list of monitor tags to filter by (e.g.,
api-gateway,checkout-service). Returns incidents linked to any of the specified monitors.200
Get an incident
Numeric ID of the incident.
200
Create an incident
New incidents are created with stateINVESTIGATING. Add comments to move the incident through its lifecycle.
Incident title.
UTC Unix timestamp in seconds when the incident started.
UTC Unix timestamp in seconds when the incident ended. Omit for open incidents.
Monitors to associate with the incident.
201
Update an incident
Performs a partial update. Only the fields you provide are changed. Updatingmonitors replaces the full monitor list — pass an empty array to remove all.
Numeric ID of the incident.
New incident title.
New start timestamp (UTC seconds).
New end timestamp (UTC seconds). Pass
null to reopen the incident.Replacement monitor list. Replaces all existing monitor associations.
200
Updating
monitors to an empty array removes all monitor associations from the incident.Delete an incident
Permanently deletes an incident and all its comments. Associated monitor alerts have theirincident_id cleared.
Numeric ID of the incident to delete.
200
Comment object
Comments represent timeline updates posted to an incident. Adding a comment with stateRESOLVED also sets end_date_time on the incident.
Unique numeric identifier.
ID of the incident this comment belongs to.
The comment text.
UTC Unix timestamp (seconds) when the update occurred. Truncated to minute start.
Incident state at the time of this comment. One of
INVESTIGATING, IDENTIFIED, MONITORING, RESOLVED.ISO 8601 creation timestamp.
ISO 8601 last-updated timestamp.
List comments
Numeric ID of the incident.
200
Get a comment
Numeric ID of the incident.
Numeric ID of the comment.
200
Add a comment
Adding a comment withstate: "RESOLVED" automatically sets end_date_time on the parent incident to the comment’s timestamp.
Numeric ID of the incident.
Comment text.
New incident state after this update. One of
INVESTIGATING, IDENTIFIED, MONITORING, RESOLVED.UTC Unix timestamp in seconds. Defaults to the current time if omitted.
201
Update a comment
Performs a partial update on a comment. Does not change the incident’s current state.Numeric ID of the incident.
Numeric ID of the comment to update.
New comment text.
New state for this comment. One of
INVESTIGATING, IDENTIFIED, MONITORING, RESOLVED.New timestamp (UTC seconds).
200
Delete a comment
Soft-deletes a comment (marks it asDELETED). Deleted comments no longer appear in list or get responses.
Numeric ID of the incident.
Numeric ID of the comment to delete.
200