Skip to main content
PATCH
/
api
/
v1
/
heartbeats
/
{id}
Update a heartbeat monitor
curl --request PATCH \
  --url https://api.example.com/api/v1/heartbeats/{id} \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "name": "<string>",
  "description": "<string>",
  "intervalSeconds": 302430,
  "gracePeriodSeconds": 1800
}
'

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

id
string
required

Body

application/json
name
string
description
string
intervalSeconds
number

1 minute to 7 days in seconds

Required range: 60 <= x <= 604800
gracePeriodSeconds
number
Required range: 0 <= x <= 3600

Response

200 - undefined