# Get a webhook endpoint

**GET** `/webhook-endpoints/{webhook_endpoint_id}`

Retrieve a single webhook endpoint by its ID.

### Path Parameters

- `webhook_endpoint_id` `string` _(required)_ — Unique identifier for the webhook endpoint.

**Request**

```shell
curl 'https://api.column.com/webhook-endpoints/<webhook_id>' \
  -u :<YOUR API KEY>
```

**Response 200**

```json
{
  "id": "",
  "created_at": "2021-11-29T21:37:17.367Z",
  "updated_at": "2021-11-29T21:37:17.367Z",
  "description": "",
  "enabled_events": [
    "string"
  ],
  "secret": "",
  "is_disabled": true,
  "url": ""
}
```
