Incidents
Get Incident
The Get Incident endpoint allows you to retrieve a specific Incident in your Garmingo Status instance.
x-garmingo-status-key<token>
Your Garmingo Status API key. Can be generated at https://garmingo.com/s/settings
In: header
Path Parameters
idstring
Response Body
curl -X GET "https://garmingo.com/api/status/v1/incidents/string"{
  "data": {
    "id": "string",
    "end": "2021-02-01T00:00:00.000Z",
    "start": "2021-01-01T00:00:00.000Z",
    "title": "string",
    "status": "string",
    "eventIds": [
      "string"
    ],
    "metadata": {},
    "resolved": true,
    "monitorIds": [
      "string"
    ],
    "description": "This is an example of a description.",
    "resolveWhenOnline": true
  },
  "success": true
}