Garmingo Docs
Monitors

Create Monitor

POST endpoint to create a monitor with type, region, schedule, and settings.

POST
/monitors

Authorization

x-garmingo-status-key
x-garmingo-status-key<token>

Your Garmingo Status API key. Can be generated at https://garmingo.com/s/settings

In: header

Request Body

application/json

ttl*integer
type*string
region*string
enabled?string
retries*integer
Range0 <= value <= 5
keywords?array<string>
settings*object
proxyHost?string
proxyPort?integer
proxyType?string
displayName*string
proxyPassword?string
proxyUsername?string

Response Body

application/json

application/json

curl -X POST "https://garmingo.com/api/status/v1/monitors" \  -H "Content-Type: application/json" \  -d '{    "ttl": 0,    "type": "string",    "region": "string",    "retries": 5,    "settings": {},    "displayName": "string"  }'
{
  "success": true
}
{
  "message": "string",
  "success": true
}