Delete a specific heartbeat by id
curl --request DELETE \
--url https://api.rootly.com/v1/heartbeats/{id} \
--header 'Authorization: Bearer <token>'
{
"data": {
"id": "4ffa253d-d814-48f2-9ae4-14ccdd4c45d8",
"type": "heartbeats",
"attributes": {
"slug": "est-iusto-enim-velit",
"name": "Est iusto enim velit.",
"description": "Dignissimos voluptate nisi suscipit.",
"alert_summary": "API is down",
"alert_urgency_id": "b883b96d-d110-4794-82f5-114a87d36aee",
"interval": 8,
"interval_unit": "seconds",
"notification_target_id": "161",
"notification_target_type": "User",
"ping_url": "http://localhost:3001/v1/heartbeats/4ffa253d-d814-48f2-9ae4-14ccdd4c45d8/ping",
"secret": "heartbeat_c4f125d9d9dd865f409931f5c0721e9e3274a1a23df2dbfb10204f0ae0523f71",
"last_pinged_at": null,
"expires_at": null,
"enabled": false,
"status": "waiting",
"updated_at": "2025-08-08T21:50:51.263-07:00",
"created_at": "2025-08-08T21:50:45.311-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": "4ffa253d-d814-48f2-9ae4-14ccdd4c45d8",
"type": "heartbeats",
"attributes": {
"slug": "est-iusto-enim-velit",
"name": "Est iusto enim velit.",
"description": "Dignissimos voluptate nisi suscipit.",
"alert_summary": "API is down",
"alert_urgency_id": "b883b96d-d110-4794-82f5-114a87d36aee",
"interval": 8,
"interval_unit": "seconds",
"notification_target_id": "161",
"notification_target_type": "User",
"ping_url": "http://localhost:3001/v1/heartbeats/4ffa253d-d814-48f2-9ae4-14ccdd4c45d8/ping",
"secret": "heartbeat_c4f125d9d9dd865f409931f5c0721e9e3274a1a23df2dbfb10204f0ae0523f71",
"last_pinged_at": null,
"expires_at": null,
"enabled": false,
"status": "waiting",
"updated_at": "2025-08-08T21:50:51.263-07:00",
"created_at": "2025-08-08T21:50:45.311-07:00"
}
}
}