3 min read

Set Up Webhooks

This guide explains how to configure Stripe webhooks to keep your application in sync with subscription changes.

Configure Webhook Endpoint

Prerequisites

Step-by-Step Configuration

  1. Navigate to Stripe Dashboard → Developers → Webhooks
  2. Click "Add endpoint"
  3. Set API version to 2024-11-20.acacia
  4. Configure the webhook URL:
https://validator.iaptic.com/v3/webhook/stripe?appName=[APP_NAME]&apiKey=[PUBLIC_KEY]

Required Events

Select the events to listen to:

Subscriptions (if your app has subscriptions):

  • customer.subscription.created
  • customer.subscription.updated
  • customer.subscription.deleted
  • customer.subscription.resumed
  • customer.subscription.paused

Payment intents (if your app has consumable or non-consumable purchases):

  • payment_intent.succeeded
  • payment_intent.canceled
  • refund.created
  • refund.updated

Products and prices:

  • product.created
  • product.deleted
  • product.updated
  • price.updated
  • price.deleted
  • price.created

Configure iaptic

  1. Copy the webhook signing secret (whsec_...)
  2. Go to iaptic Dashboard → Settings
  3. Enter the webhook secret:
    Stripe Webhook Secret: whsec_...
    

Test the Configuration

  1. Make a test payment
  2. Check Stripe Webhook logs.
  3. Check iaptic logs for the event.