PUT /monitors/{id}

Authentication

Bearer Token (hu_api_key)

Path Parameters

id string required path

Request Body required

application/json
name string
type string
Enum: http, ping, tcp, dns, keyword, heartbeat
url unknown
method string
Enum: GET, POST, PUT, DELETE, PATCH, HEAD, OPTIONS
headers unknown
body unknown
interval_seconds integer
timeout_ms integer
regions string[]
Array of:
assertions unknown
keyword unknown
keyword_type string
Enum: contains, not_contains, regex
ssl_check boolean
domain_check boolean
screenshot_on_failure boolean
screenshot_compare boolean
retry_count integer
tags unknown

Responses

200 Monitor updated
application/json
data object
name string REQUIRED
type string REQUIRED
Enum: http, ping, tcp, dns, keyword, heartbeat
url string (uri)
method string REQUIRED
Enum: GET, POST, PUT, DELETE, PATCH, HEAD, OPTIONS
headers object
body string
interval_seconds integer REQUIRED
timeout_ms integer REQUIRED
regions string[] REQUIRED
Array of:
assertions object[]
Array of:
type string REQUIRED
operator string REQUIRED
value string REQUIRED
auth_type string
Enum: basic, bearer, header
auth_config object
keyword string
keyword_type string REQUIRED
Enum: contains, not_contains, regex
heartbeat_interval integer
heartbeat_grace integer
ssl_check boolean REQUIRED
domain_check boolean REQUIRED
screenshot_on_failure boolean REQUIRED
screenshot_compare boolean REQUIRED
screenshot_threshold number REQUIRED
retry_count integer REQUIRED
tags string[]
Array of:
404 Not found
curl -X PUT 'https://happyuptime.com/api/v1/monitors/string' \  -H 'Authorization: Bearer YOUR_API_TOKEN' \  -H 'Content-Type: application/json' \  -d '{  "name": "string",  "type": "http",  "url": "https://example.com",  "method": "GET",  "headers": {},  "body": "string",  "interval_seconds": 30,  "timeout_ms": 1000,  "regions": [    "us-east"  ],  "assertions": [    {      "type": "string",      "operator": "string",      "value": "string"    }  ],  "keyword": "string",  "keyword_type": "contains",  "ssl_check": true,  "domain_check": true,  "screenshot_on_failure": true,  "screenshot_compare": true,  "retry_count": 0,  "tags": [    "string"  ]}'
const response = await fetch('https://happyuptime.com/api/v1/monitors/string', {  method: 'PUT',  headers: {      "Authorization": "Bearer YOUR_API_TOKEN",      "Content-Type": "application/json"  },  body: JSON.stringify({    "name": "string",    "type": "http",    "url": "https://example.com",    "method": "GET",    "headers": {},    "body": "string",    "interval_seconds": 30,    "timeout_ms": 1000,    "regions": [      "us-east"    ],    "assertions": [      {        "type": "string",        "operator": "string",        "value": "string"      }    ],    "keyword": "string",    "keyword_type": "contains",    "ssl_check": true,    "domain_check": true,    "screenshot_on_failure": true,    "screenshot_compare": true,    "retry_count": 0,    "tags": [      "string"    ]  })});const data = await response.json();console.log(data);
import requestsheaders = {    'Authorization': 'Bearer YOUR_API_TOKEN'}response = requests.put('https://happyuptime.com/api/v1/monitors/string', headers=headers, json={  "name": "string",  "type": "http",  "url": "https://example.com",  "method": "GET",  "headers": {},  "body": "string",  "interval_seconds": 30,  "timeout_ms": 1000,  "regions": [    "us-east"  ],  "assertions": [    {      "type": "string",      "operator": "string",      "value": "string"    }  ],  "keyword": "string",  "keyword_type": "contains",  "ssl_check": true,  "domain_check": true,  "screenshot_on_failure": true,  "screenshot_compare": true,  "retry_count": 0,  "tags": [    "string"  ]})print(response.json())
200 Response
{  "data": {    "name": "<string>",    "type": "http",    "url": "<uri>",    "method": "GET",    "headers": "<object>",    "body": "<string>",    "interval_seconds": 123,    "timeout_ms": 123,    "regions": [      "us-east"    ],    "assertions": [      {        "type": "<string>",        "operator": "<string>",        "value": "<string>"      }    ],    "auth_type": "basic",    "auth_config": "<object>",    "keyword": "<string>",    "keyword_type": "contains",    "heartbeat_interval": 123,    "heartbeat_grace": 123,    "ssl_check": true,    "domain_check": true,    "screenshot_on_failure": true,    "screenshot_compare": true,    "screenshot_threshold": 123,    "retry_count": 123,    "tags": [      "<string>"    ]  }}