> ## Documentation Index
> Fetch the complete documentation index at: https://dialnexa.com/docs/llms.txt
> Use this file to discover all available pages before exploring further.

# Get Webhook

> Fetch the full configuration of a single webhook subscription, including subscribed events and active status.

<Warning>
  **Legacy endpoint - deprecated.** Unversioned endpoints are scheduled for removal on **July 31, 2026**. Use the [`/v1` version](/docs/api-reference/v1/webhooks/get) for new integrations. This endpoint remains available for existing integrations until then.
</Warning>

Returns the full record for a single webhook subscription: the delivery URL, the list of subscribed events, the active/inactive flag, and the creation timestamp. The signing `secret` is only returned in the response of [Create Webhook](/docs/api-reference/v1/webhooks/create); afterwards it is never echoed back. If you have lost the secret, delete the webhook and recreate it.

## When to use this

Use this endpoint when you need to inspect a webhook subscription before changing or removing it. Common cases:

* **Pre-deploy verification**: confirm the subscribed events on a webhook match what your downstream consumer expects before publishing a release.
* **Audit and compliance reviews**: render the destination URL and event list for an internal review.
* **Debugging delivery failures**: confirm the webhook is still `is_active: true` before chasing receiver-side issues. Cross-reference with [Webhook retries and failures](/docs/api-access/webhook-retries-and-failures).

For the entire set of webhooks on the workspace, use [List Webhooks](/docs/api-reference/v1/webhooks/list).

## Path parameters

| Parameter | Description                                     |
| --------- | ----------------------------------------------- |
| `id`      | The webhook ID, for example `whk_c9v3nz8rq4pm`. |

## Errors

* `404 Not Found` is returned when the webhook does not exist.
* `403 Forbidden` is returned when the API key cannot read webhook configuration on this workspace.

## Related endpoints

* [List Webhooks](/docs/api-reference/v1/webhooks/list): see every webhook in the workspace.
* [Update Webhook](/docs/api-reference/v1/webhooks/update): change the URL, events, or active status.
* [Delete Webhook](/docs/api-reference/v1/webhooks/delete): permanently remove the subscription.
* [Webhook secrets](/docs/api-access/webhook-secrets): how the signing secret is used.


## OpenAPI

````yaml GET /user-webhooks/{id}
openapi: 3.0.0
info:
  title: DialNexa API
  description: >-
    Public REST API for the DialNexa voice AI platform. Versioned endpoints are
    under /v1; unversioned endpoints are legacy and deprecated.
  version: 1.0.0
servers:
  - url: https://api.dialnexa.com
    description: DialNexa production API
security:
  - bearer: []
tags:
  - name: API Keys
  - name: Agent Functions
  - name: Agents V1
  - name: Agents2
  - name: Batch Calls
  - name: Batch Calls V1
  - name: Call Logs
  - name: Calls
  - name: Calls V1
  - name: Campaign Leads
  - name: Campaigns
  - name: External Webhooks
  - name: Knowledge Base
  - name: Knowledge Base V1
  - name: LLMs
  - name: LLMs V1
  - name: Languages
  - name: Languages V1
  - name: Organization Phone Numbers
  - name: Organization Phone Numbers V1
  - name: Phone Number Pricing
  - name: Phone Number Pricing V1
  - name: Transcribers
  - name: Transcribers V1
  - name: User Webhooks
  - name: User Webhooks V1
  - name: V1
  - name: Voices
  - name: Voices V1
  - name: Webcall
  - name: Workflow Leads
  - name: Workflow Leads V1
  - name: Workflows
  - name: Workflows V1
paths:
  /user-webhooks/{id}:
    get:
      tags:
        - User Webhooks
      summary: Get a user webhook by ID
      description: >-
        **Legacy endpoint - deprecated, scheduled for removal on July 31,
        2026.** Use the `/v1` version for new integrations. 
      operationId: UserWebhooksController_findOne
      parameters:
        - name: id
          required: true
          in: path
          description: The ID of the webhook.
          schema:
            example: wh_123
            type: string
        - name: x-organization-id
          in: header
          description: RSA encrypted organization ID (base64 format)
          required: true
          schema:
            type: string
            example: BASE64_ENCRYPTED_ORG_ID_HERE
      responses:
        '200':
          description: ''
      deprecated: true
components:
  securitySchemes:
    bearer:
      scheme: bearer
      bearerFormat: JWT
      type: http

````