Skip to main content

Subscription renewal reminder

Webhook behaviour

Subscription renewal reminder will be dispatched 7 days before a subscription is due to renew.

Note: This is a custom feature that requires configuration. Please contact PAI support to enable this functionality for your organization.

Payload

Within the subscription object, which is a part of the payload, you will get the most critical information like:

  • subscriptionId
  • trialEndDate
  • planId
  • billingCycle

Here is the exact payload:

type Event = {
type: 'subscription-renewal-reminder';
metadata: Subscription;
};

You can check how the subscription object look like here