Manually Set Monitor Status
warning
This can lead to unexpected behavior and should only be used in special cases.
And for Monitors of the Manual
type.
This endpoint allows you to manually set the status of a specific Monitor in your Garmingo Status instance.
Endpoint | Method | URL |
---|---|---|
/monitors/{id}/status | POST | https://garmingo.com/api/status/v1/monitors/{id}/status |
Request Body​
The request body is a JSON object with the following properties:
Parameter | Type | Description | Required |
---|---|---|---|
status | boolean | The status of the Monitor. Can be true for Up or false for Down . | Yes |
Example​
{
"status": true
}
Response​
The response is a JSON object with the following properties:
Property | Type | Description |
---|---|---|
success | boolean | Whether the request was successful. |
Example​
{
"success": true
}