# Get a webhook

Retrieve full details of a webhook by UUID.

Endpoint: GET /integrations/api/webhooks/{uuid}
Version: 2.0.0
Security: bearerAuth

## Path parameters:

  - `uuid` (string, required)
    Resource UUID.

## Response 200 fields (application/json):

  - `uuid` (string)
    Example: b27f3cfc-84a0-4fb8-956b-91d032f9c523

  - `team_id` (integer)

  - `user_id` (integer)

  - `name` (string)
    Example: New Reply Handler

  - `event` (string)
    Event that triggers the webhook. Supported events: `contact_replied_email`, `contact_replied_linkedin_message`, `contact_exported`, `contact_enriched`.
    Enum: "contact_replied_email", "contact_replied_linkedin_message", "contact_exported", "contact_enriched"

  - `request_method` (string)
    HTTP method for the outgoing request.
    Example: POST

  - `target_url` (string)
    Example: https://hook.eu2.make.com/abc123

  - `filters` (object)
    Optional filter criteria to narrow which contacts trigger the webhook. Uses `jsonLogic`, `elasticQuery`, and `filter_tree_format` keys.

  - `status` (string)
    Webhook status.
    Enum: "on", "off"

  - `created_at` (string)

  - `updated_at` (string)

