Skip to main content
Webhooks let ErynoaGroup notify your application in real time when events occur. Use these endpoints to manage your webhook subscriptions programmatically, or configure them through your dashboard.

Webhook object

Event types

List webhooks

Example:

Create a webhook

string
required
The HTTPS URL that receives event payloads. Must be publicly accessible.
array
required
List of event types to subscribe to. Use ["*"] to subscribe to all events.
Example:
Response: 201 Created — includes a secret field (shown only once) for signature verification.

Delete a webhook

Example:

Webhook payload structure

Every event payload follows this structure:

Verifying webhook signatures

ErynoaGroup signs each payload using HMAC-SHA256 with your webhook secret. The signature is in the X-Erynoa-Signature header.
Always verify the signature before processing a webhook payload. Skipping verification opens your endpoint to spoofed events.