Set Up Outbound Webhooks
Register a webhook URL to receive real-time event notifications from Plenix.
Setting Up Outbound Webhooks
- Go to Settings β API & Webhooks β Webhooks and click New Webhook.
- Enter the destination HTTPS URL.
- Select event types to subscribe to (e.g.
ticket.created,invoice.updated). - Click Save β the webhook is active immediately.
Payload format
{
"eventId": "uuid",
"tenantSlug": "your-tenant",
"entityType": "ticket",
"entityId": "uuid",
"action": "POST",
"actorId": "user-uuid",
"ts": "2026-06-16T10:00:00.000Z",
"diff": { "priority": "high" }
}
Signature verification
Each delivery includes X-Plenix-Signature β HMAC-SHA256 of the raw body using your webhook secret. Verify this to reject forged requests.
Failed deliveries retry up to 5 times with exponential back-off over 24 hours.
Where to go next
- Understand the whole module β Generate an API Key
- Next in this module β API Rate Limits
- See where this fits in the bigger picture β Start Here: What Plenix Is and How It Fits Together
Was this article helpful?