List incident retrospectives
curl --request GET \
--url https://api.rootly.com/v1/post_mortems \
--header 'Authorization: Bearer <token>'{
"data": [
{
"id": "<string>",
"type": "incident_post_mortems",
"attributes": {
"title": "<string>",
"created_at": "<string>",
"updated_at": "<string>",
"content": "<string>",
"status": "draft",
"started_at": "<string>",
"mitigated_at": "<string>",
"resolved_at": "<string>",
"show_timeline": true,
"show_timeline_trail": true,
"show_timeline_genius": true,
"show_timeline_tasks": true,
"show_timeline_action_items": true,
"show_timeline_order": "desc",
"show_services_impacted": true,
"show_functionalities_impacted": true,
"show_groups_impacted": true,
"show_alerts_attached": true,
"url": "<string>"
}
}
],
"links": {
"self": "<string>",
"first": "<string>",
"prev": "<string>",
"next": "<string>",
"last": "<string>"
}
}Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Filter by incident type slugs
Filter by incident type IDs (UUIDs)
Filter by environment slugs
Filter by environment IDs (UUIDs)
Filter by functionality slugs
Filter by functionality IDs (UUIDs)
Filter by service slugs
Filter by service IDs (UUIDs)
Filter by team/group slugs
Filter by team/group IDs (UUIDs)
Filter by cause slugs
Filter by cause IDs (UUIDs)
success
Show child attributes
Unique ID of the incident retrospective
incident_post_mortems Show child attributes
The title of the incident retrospective
Date of creation
Date of last update
The content of the incident retrospective (Only if internal)
The status of the incident retrospective
draft, published Date of started at
Date of mitigation
Date of resolution
Show events timeline of the incident retrospective
Show trail events in the timeline of the incident retrospective
Show workflow events in the timeline of the incident retrospective
Show tasks in the timeline of the incident retrospective
Show action items in the timeline of the incident retrospective
The order of the incident retrospective timeline
asc, desc Show functionalities impacted of the incident retrospective
Show services impacted of the incident retrospective
Show groups impacted of the incident retrospective
Show alerts attached to the incident
The url to the incident retrospective
Was this page helpful?
curl --request GET \
--url https://api.rootly.com/v1/post_mortems \
--header 'Authorization: Bearer <token>'{
"data": [
{
"id": "<string>",
"type": "incident_post_mortems",
"attributes": {
"title": "<string>",
"created_at": "<string>",
"updated_at": "<string>",
"content": "<string>",
"status": "draft",
"started_at": "<string>",
"mitigated_at": "<string>",
"resolved_at": "<string>",
"show_timeline": true,
"show_timeline_trail": true,
"show_timeline_genius": true,
"show_timeline_tasks": true,
"show_timeline_action_items": true,
"show_timeline_order": "desc",
"show_services_impacted": true,
"show_functionalities_impacted": true,
"show_groups_impacted": true,
"show_alerts_attached": true,
"url": "<string>"
}
}
],
"links": {
"self": "<string>",
"first": "<string>",
"prev": "<string>",
"next": "<string>",
"last": "<string>"
}
}