Webhook FAQ

Webhook FAQ

Common questions about webhook integrations.


General Questions

Q: What is a webhook?

A webhook automatically sends HTTP requests to external URLs when events happen in Custojo. Think of it as "push notifications" for your external systems.

Q: Why don't I see Webhooks in my sidebar?

The Webhook module may not be enabled for your plan. Contact your administrator.


Technical Questions

Q: What format is the webhook data?

Webhooks send JSON data via HTTP POST request.

Q: How do I verify webhook authenticity?

Check the secret signature header included with each request.

Q: What if my endpoint is down?

The system will retry failed webhooks. Check your webhook logs for failure details.


Troubleshooting

Q: Webhook isn't firing

  1. Verify webhook is active
  2. Check event type matches your action
  3. View logs for errors

Q: Receiving duplicate data

  1. Check if multiple webhooks target same event
  2. Implement idempotency in your receiver
  3. Use unique identifiers from payload

Q: Data is incomplete

  1. Verify the module is enabled
  2. Check user permissions
  3. Review webhook logs for payload

Related