Skip to main content
POST
/
api
/
v1
/
heartbeats
/
{id}
/
pause
Pause a heartbeat monitor for N hours
curl --request POST \
  --url https://api.example.com/api/v1/heartbeats/{id}/pause \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "hours": 84.5
}'

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
hours
number
required

Hours to pause (1–168)

Required range: 1 <= x <= 168

Response

201 - undefined