Skip to main content

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.

EndpointMethodURL
/monitors/{id}/statusPOSThttps://garmingo.com/api/status/v1/monitors/{id}/status

Request Body​

The request body is a JSON object with the following properties:

ParameterTypeDescriptionRequired
statusbooleanThe 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:

PropertyTypeDescription
successbooleanWhether the request was successful.

Example​

{
"success": true
}