Skip to main content
GET
Get Webhook
Returns details for a single webhook. The secret is never returned.

Authentication


Path parameters

id
string
required
Webhook ID (returned when you created the webhook).

Response

id
string
Webhook ID
url
string
Endpoint URL
events
string[]
Subscribed event types
name
string
Webhook name
description
string | null
Optional description
isActive
boolean
Whether the webhook is active
lastTriggeredAt
string | null
Last event sent (ISO UTC)
lastSuccessAt
string | null
Last successful delivery (ISO UTC)
lastFailureAt
string | null
Last failed delivery (ISO UTC)
failureCount
number
Consecutive failure count
createdAt
string
Creation timestamp
updatedAt
string
Last update timestamp

Example

200 Response
Use lastSuccessAt, lastFailureAt, and failureCount to monitor your endpoint’s health. If failureCount is climbing, your endpoint might be down.