Get Webhook Event
GET /webhooks/:webhookId/events/:webhookEventId
Gets a specific webhook event.
Request headers required. See Request Headers for more information.
Authentication required. See Authentication Headers for more information.
We only keep a trace of those Webhook Events in our system for a retention period of 31 days. Past that, they are discarded, so you cannot see them using List Webhook Events or Get Webhook Event endpoints.
Permissions Required
Webhooks:Events:Read
Response
For more details on all possible contents in the data
field, depending on which webhook event kind
it is, check out Webhook Event Data.
id
String
Webhook Event ID
kind
String
date
String
ISO-8601 date string when the actual event happened in our system.
deliveryFailed
Boolean
deliveryAttempt
Number
timestampSent
Number
status
String
Response status of the webhook delivery attempt. Can be a http status code (eg "200" or "500") if your server responded, or another error code otherwise. This can be helpful to troubleshoot your webhook endpoint.
error
String - Optional
Error detail, if some error happened upon delivery attempt to your webhook endpoint.
retryOf
String - Optional
nextAttemptDate
String - Optional
data
Object
Last updated