Update Incident
This endpoint allows you to update an existing Incident in your Garmingo Status instance.
Endpoint | Method | URL |
---|---|---|
/incidents/{id} | PATCH | https://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:
Property | Type | Description |
---|---|---|
success | boolean | Whether the request was successful. |
Example​
{
"success": true
}