Delete a specific webhook endpoint by id
curl --request DELETE \
--url https://api.rootly.com/v1/webhooks/endpoints/{id} \
--header 'Authorization: Bearer <token>'
{
"data": {
"id": "06a1319c-dc79-483b-af18-08b05993e2b5",
"type": "webhooks_endpoints",
"attributes": {
"team_id": 414,
"slug": "test",
"name": "test",
"url": "https://test.com",
"secret": "qgk7xoE5B657ipXh",
"event_types": [],
"enabled": true,
"created_at": "2025-07-25T14:38:49.734-07:00",
"updated_at": "2025-07-25T14:38:51.278-07:00"
}
}
}
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
webhooks_endpoint deleted
The response is of type object
.
Was this page helpful?
curl --request DELETE \
--url https://api.rootly.com/v1/webhooks/endpoints/{id} \
--header 'Authorization: Bearer <token>'
{
"data": {
"id": "06a1319c-dc79-483b-af18-08b05993e2b5",
"type": "webhooks_endpoints",
"attributes": {
"team_id": 414,
"slug": "test",
"name": "test",
"url": "https://test.com",
"secret": "qgk7xoE5B657ipXh",
"event_types": [],
"enabled": true,
"created_at": "2025-07-25T14:38:49.734-07:00",
"updated_at": "2025-07-25T14:38:51.278-07:00"
}
}
}