This endpoint requires authentication. You will need to fetch a valid authentication token first.
Returns a Blameless retrospective.
GET <customer>.blameless.io/api/v1/incidents/<incidentId>/retrospective
Property | Type | Required | Description |
---|---|---|---|
Method | GET |
||
Customer | String | Yes | The slug of your organization cluster |
Path | String | Yes | /api/v1/incidents/<incidentId>/retrospective |
Auth | Yes | Bearer with valid authorization token | |
Path Parameters | Integer | Yes | The incident ID |
curl\
-H 'content-type: application/json'\
-H 'Authorization: Bearer <token>'\
https://<customer>.blameless.io/api/v1/incidents/342/retrospective
Note: Fields identified in the samples are the minimum returned. The response may contain additional fields.The sample response returns a retrospective containing one or more identified incident properties and values.
{
"ok":true,
"retrospective":{
"_id":{
"$oid":"5b3f1ca3c09f4300017248e6"
},
"incident":342,
"created":{
"$date":1530862754977
},
"updated":{
"$date":1530862755096
},
"state":"INCOMPLETE",
"incident_duration":39,
"time_to_indentify_incident":0,
"time_to_take_action":0,
"summary":"checking the list",
"root_cause":"",
"why_items":[],
"analysis":"## What happened\n\n\n###",
"tags":{
"CONTRIBUTING-FACTOR":[],
"SERVICE":[],
"CUSTOMER":[],
"PRODUCT":[],
"Impact":[]
},
"incident_type":"DEFAULT"
}
}
Comments
0 comments
Article is closed for comments.