DELETE
/
v1
/
webhooks
/
endpoints
/
{id}
Delete a webhook endpoint
curl --request DELETE \
  --url https://api.rootly.com/v1/webhooks/endpoints/{id} \
  --header 'Authorization: Bearer <token>'
{
  "data": {
    "id": "c61cf3b3-bf77-4784-84a3-367ba927f73f",
    "type": "webhooks_endpoints",
    "attributes": {
      "team_id": 417,
      "slug": "test",
      "name": "test",
      "url": "https://test.com",
      "secret": "cQNpaGGVyS9DJEEm",
      "event_types": [],
      "enabled": true,
      "created_at": "2025-08-14T12:49:22.460-07:00",
      "updated_at": "2025-08-14T12:49:23.796-07:00"
    }
  }
}

Authorizations

Authorization
string
header
required

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

Path Parameters

id
string
required

Response

200
application/vnd.api+json

webhooks_endpoint deleted

The response is of type object.