Delete a specific heartbeat by id
curl --request DELETE \
--url https://api.rootly.com/v1/heartbeats/{id} \
--header 'Authorization: Bearer <token>'
{
"data": {
"id": "de27f351-4281-4d11-bfdb-e1baa6940f6a",
"type": "heartbeats",
"attributes": {
"slug": "eius-vel-a-et",
"name": "Eius vel a et.",
"description": "Sint nesciunt quo perspiciatis.",
"alert_summary": "API is down",
"alert_urgency_id": "87b3e9ae-e4da-42dd-aa17-9571d64e3d86",
"interval": 3,
"interval_unit": "seconds",
"notification_target_id": "161",
"notification_target_type": "User",
"ping_url": "http://localhost:3001/v1/heartbeats/de27f351-4281-4d11-bfdb-e1baa6940f6a/ping",
"secret": "heartbeat_ee5036c18c09d05838c540d7bd296a0f6a005b45e06207052b456fdf59929c6e",
"last_pinged_at": null,
"expires_at": null,
"enabled": false,
"status": "waiting",
"updated_at": "2025-07-20T00:39:20.636-07:00",
"created_at": "2025-07-20T00:39:12.465-07:00"
}
}
}
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
heartbeat deleted
The response is of type object
.
Was this page helpful?
curl --request DELETE \
--url https://api.rootly.com/v1/heartbeats/{id} \
--header 'Authorization: Bearer <token>'
{
"data": {
"id": "de27f351-4281-4d11-bfdb-e1baa6940f6a",
"type": "heartbeats",
"attributes": {
"slug": "eius-vel-a-et",
"name": "Eius vel a et.",
"description": "Sint nesciunt quo perspiciatis.",
"alert_summary": "API is down",
"alert_urgency_id": "87b3e9ae-e4da-42dd-aa17-9571d64e3d86",
"interval": 3,
"interval_unit": "seconds",
"notification_target_id": "161",
"notification_target_type": "User",
"ping_url": "http://localhost:3001/v1/heartbeats/de27f351-4281-4d11-bfdb-e1baa6940f6a/ping",
"secret": "heartbeat_ee5036c18c09d05838c540d7bd296a0f6a005b45e06207052b456fdf59929c6e",
"last_pinged_at": null,
"expires_at": null,
"enabled": false,
"status": "waiting",
"updated_at": "2025-07-20T00:39:20.636-07:00",
"created_at": "2025-07-20T00:39:12.465-07:00"
}
}
}