# Get a webhook

Retrieves details of a specific webhook by its unique webhook_id. The response includes the current status and metadata of the webhook.

Endpoint: GET /webhooks/{webhook_id}
Version: 1.0.0
Security: basicAuth

## Path parameters:

  - `webhook_id` (integer, required)
    The ID of the webhook to retrieve
    Example: 152691

## Response 200 fields (application/json):

  - `http` (integer, required)
    HTTP status code
    Example: 200

  - `webhook_id` (integer, required)
    Unique identifier of the webhook
    Example: 152691

  - `webhook_url` (string, required)
    The URL to which webhook events are sent
    Example: "https://example.com"

  - `webhook_type` (string, required)
    Type of event the webhook listens for
    Enum: "send-envelope", "signed-envelope", "cancelled-envelope", "rejected-envelope", "bounced-envelope", "add-user", "add-contact", "opened-envelope", "add-template", "all", "signed-envelope-complete", "verify-envelope-widget", "signed-envelope-widget", "send-envelope-failed"

  - `webhook_created` (string, required)
    Timestamp when the webhook was created
    Example: "2025-06-23T17:15:01+0000"

  - `webhook_updated` (any, required)
    Timestamp when the webhook was last updated

  - `webhook_suspended` (any, required)
    Whether the webhook is currently suspended


