Get Incident
This endpoint requires authentication. You will need to fetch a valid authentication token first.
Get Incident
Returns a Blameless Incident, its creator, a Severity (Sev) level, description, as well as date and time.
GET <customer>.blameless.io/api/v1/incidents/<incidentId>
Property | Type | Required | Description |
---|---|---|---|
Method | GET | ||
Customer | string | Yes | The slug of your organization cluster |
Path | string | Yes | /api/v1/incidents/<incidentId> |
Auth | Bearer with valid authorization token | ||
Path Parameters | Integer | Yes | The incident ID |
Sample Request
curl https://<customer>.blameless.io/api/v1/incidents/344 \
-H 'content-type: application/json' \
-H 'Authorization: Bearer <token>'
note
Fields identified in the samples are the minimum returned. The response may contain additional fields.
Sample Response
The sample response displays the identified Incident, its creator, a Severity (Sev) level, description, as well as date and time.
{
"ok": true,
"incident": {
"_id": 344,
"created": {
"$date": 1530898627590
},
"updated": {
"$date": 1530898630275
},
"creator": "UA4R54PCH",
"description": "New incident test 3",
"status": "INVESTIGATING",
"severity": 1,
"type": "security",
"start_of_customer_impact": {
"$date": 1530898627590
},
"slack_channel": {
"id": "CBKHWTLUQ",
"name": "_incident-344",
"is_private": false
},
"ticket": {
"type": "JIRA",
"key": "INCIDENT-571",
"url": "https://blameless.atlassian.net/browse/INCIDENT-571"
},
"name": "344"
...
}
}