# List webhooks

List all webhooks configured in your account. Webhooks send HTTP requests to your target URL when specified events occur.

Endpoint: GET /integrations/api/webhooks
Version: 2.0.0
Security: bearerAuth

## Response 200 fields (application/json):

  - `data` (array)

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

  - `data.team_id` (integer)

  - `data.user_id` (integer)

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

  - `data.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"

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

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

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

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

  - `data.created_at` (string)

  - `data.updated_at` (string)

  - `limit` (integer)
    Example: 20

  - `offset` (integer)
    Example: 0

  - `total` (integer)
    Example: 3

  - `has_more` (boolean)

