:/iffy
Webhooks

Set up webhooks

Webhooks allow your application to receive real-time notifications about moderation events instead of polling our API for updates.

Step 1: Access developer settings

  1. Sign in to your Iffy Dashboard
  2. Click on Developer in the sidebar

Developer section

Step 2: Create a webhook

  1. Click Edit webhook
  2. Enter your webhook URL (e.g., https://yourapp.com/webhooks/iffy)
  3. Click Save webhook
  4. Store the generated secret securely - you'll need it to verify webhook signatures

Create webhook

Step 3: Implement webhook handling

Now that you've configured your webhook URL, you'll need to set up your application to properly consume webhook events. These events will notify you when content is flagged, users are suspended, and other important moderation actions occur.

Best practices

  • Use HTTPS for webhook URLs
  • Always verify webhook signatures
  • Handle events idempotently
  • Respond quickly (process events asynchronously if needed)
  • Keep logs of received webhooks

On this page