Skip to main content

Update Incident

This endpoint allows you to update an existing Incident in your Garmingo Status instance.

EndpointMethodURL
/incidents/{id}PATCHhttps://garmingo.com/api/status/v1/incidents/{id}

Request Body​

The request body is the Update Incident object.

Example​

{
"title": "My Monitor",
"description": "This is a description."
}

Response​

The response is a JSON object with the following properties:

PropertyTypeDescription
successbooleanWhether the request was successful.

Example​

{
"success": true
}