Vatly
Api Reference

Webhook Events

Inspect individual webhook events and retrieve the full payload that was delivered by Vatly.

The webhook event model

Webhook events let you inspect the exact payload Vatly generated for a domain event. This is the persisted event — the record returned by this endpoint. The webhook.setup verification call is a delivery-only handshake and is never persisted, so it does not appear here. For the full list of events and the live delivery envelope, see the Webhooks guide.

Properties

NameTypeDescription
idstringUnique identifier for the webhook event (starts with webhook_event_).
resourcestringThe resource type. Always webhook_event.
eventNamestringThe event name, such as order.paid or refund.completed. See the Webhooks guide for the full list.
entityTypestringThe resource type the event refers to, such as order, refund, chargeback, subscription, or checkout.
entityIdstringThe ID of the related resource.
objectobjectThe full resource payload as it existed when the event occurred (an Order, Chargeback, Refund, Subscription, or Checkout), keyed by its own resource field. Note object.resource can differ from entityType: chargeback events carry entityType: order but a Chargeback object.
createdAtstringWhen the event occurred (ISO 8601 format).
testmodebooleanWhether the event originated from a test-mode resource.
linksobjectHATEOAS links. Contains self.

Get a webhook event

GET /v1/webhook-events/:eventId

This endpoint returns the full webhook event payload for a specific event ID.

Parameters

NameTypeDescription
eventIdstringThe unique identifier of the webhook event.
curl https://api.vatly.com/v1/webhook-events/webhook_event_Qk8pRtSvWm2NjLhYcZaE \
  -H "Authorization: Bearer live_your_api_key_here"
Copyright © 2026