Vatly
Api Reference

Webhook events

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

The Webhook event API resource

A webhook event represents a single event delivery that Vatly generated. You can retrieve it later to inspect the exact payload that was sent.

Properties

NameTypeDescription
idstringUnique identifier for the webhook event.
resourcestringThe resource type. Always webhook_event.
eventNamestringEvent name that triggered the webhook, such as order.paid or subscription.updated.
entityTypestringResource type the event relates to, such as order, checkout, or subscription.
entityIdstringID of the resource this event relates to.
objectobjectFull resource payload as it existed when the event was created.
linksobjectHATEOAS links to related resources. Contains at least a self link.

Get a webhook event

GET /v1/webhook-events/{eventId}

Retrieve the full webhook event payload for a specific event ID.

curl https://api.vatly.com/v1/webhook-events/evt_abc123def456 \
  -H "Authorization: Bearer live_your_api_key_here"

Response

Returns the full stored webhook event, including the resource snapshot in the object field.

Errors

StatusMeaning
401Missing or invalid API key
403You do not have access to this event
404The webhook event was not found
Copyright © 2026