# Get account-level webhook by ID

Retrieve a specific account-level webhook by its webhook ID. Returns webhook details including associated event types.

Endpoint: GET /v1/webhooks/{webhook_id}
Version: 3.0.0
Security: basicAuth

## Path parameters:

  - `webhook_id` (string, required)
    The webhook ID to retrieve

## Response 200 fields (application/json):

  - `webhook_id` (string, required)
    Unique identifier for the webhook

  - `description` (string, required)
    User-provided description of the webhook

  - `url` (string, required)
    The endpoint URL where webhook events are delivered

  - `event_types` (array, required)
    List of event types that trigger this webhook

  - `created_at` (string, required)
    Timestamp indicating when the webhook was created in RFC3339 format

## Response 403 fields (application/json):

  - `message` (string, required)
    Response message

## Response 404 fields (application/json):

  - `Description` (string, required)


