Retrieves a specific webhook endpoint by id
curl --request GET \
--url https://api.rootly.com/v1/webhooks/endpoints/{id} \
--header 'Authorization: Bearer <token>'
{
"data": {
"id": "babb458f-15ba-4295-8ecb-9ca08b377907",
"type": "webhooks_endpoints",
"attributes": {
"team_id": 414,
"slug": "test",
"name": "test",
"url": "https://test.com",
"secret": "nPkRJjYFQu5zzpoZ",
"event_types": [],
"enabled": true,
"created_at": "2025-08-01T09:52:18.523-07:00",
"updated_at": "2025-08-01T09:52:18.523-07:00"
}
}
}
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
webhooks_endpoint found
The response is of type object
.
Was this page helpful?
curl --request GET \
--url https://api.rootly.com/v1/webhooks/endpoints/{id} \
--header 'Authorization: Bearer <token>'
{
"data": {
"id": "babb458f-15ba-4295-8ecb-9ca08b377907",
"type": "webhooks_endpoints",
"attributes": {
"team_id": 414,
"slug": "test",
"name": "test",
"url": "https://test.com",
"secret": "nPkRJjYFQu5zzpoZ",
"event_types": [],
"enabled": true,
"created_at": "2025-08-01T09:52:18.523-07:00",
"updated_at": "2025-08-01T09:52:18.523-07:00"
}
}
}