Skip to main content
GET
Get Webhook Details
Read only
Recommended. This endpoint is part of the public /v1 API reference and is the supported path for new integrations. See the migration guide for versioning guidance.
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; 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.
For the entire set of webhooks on the workspace, use List Webhooks.

Path parameters

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.

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

id
string
required

Webhook ID

Example:

"webhook_abc123"

Response

Webhook returned successfully.

message
string
Example:

"Webhook fetched successfully"

webhook
object