Skip to main content

Subscription trial end reminder

Webhook behaviour

Subscription trial end reminder will be dispatched 3 days before a subscription trial will end. As in some countries or states reminders are required by law, this event is a perfect way to initiate a flow to send a reminder to a customer.

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 = {
deduplicationId: string; // unique identifier for the event, used to prevent duplicate events
type: 'subscription-trial-end-reminder';
organizationId: string;
metadata: Subscription;
};

You can check how the subscription object look like here