GET
/
v1
/
webhooks
/
endpoints
/
{id}
Retrieves a webhook endpoint
curl --request GET \
  --url https://api.rootly.com/v1/webhooks/endpoints/{id} \
  --header 'Authorization: Bearer <token>'
{
  "data": {
    "id": "3a45cd2f-e10a-410c-b6a8-34dfc664df2f",
    "type": "webhooks_endpoints",
    "attributes": {
      "team_id": 423,
      "slug": "test",
      "name": "test",
      "url": "https://test.com",
      "secret": "NnRbs1m1K4x9sroo",
      "event_types": [],
      "enabled": true,
      "created_at": "2025-09-10T23:05:38.068-07:00",
      "updated_at": "2025-09-10T23:05:38.068-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

webhooks_endpoint found

The response is of type object.