Skip to main content

extendSubscriptionItemFreeTrial()

Important

Billing regularly introduces new features and UI changes to Clerk's components. If you'd like to remain on a specific version of Clerk's components or SDK, you can follow the steps in the pinning documentation.

Extends the free trial for the given Subscription Item.

Returns the updated BillingSubscriptionItem object.

function extendSubscriptionItemFreeTrial(subscriptionItemId: string, params: { extendTo: Date }): Promise<BillingSubscriptionItem>
  • Name
    subscriptionItemId
    Type
    string
    Description

    The ID of the Subscription Item to extend the free trial for.

  • Name
    params
    Type
    { extendTo: Date; }
    Description

    The parameters for the request.

  • Name
    params.extendTo
    Type
    Date
    Description

    The date to extend the free trial to. Must be in the future and not more than 365 days from the current trial end date.

Note

Using clerkClient varies based on the SDK you're using. Refer to the overview for usage details, including guidance on how to access the userId and other properties.

const response = await clerkClient.billing.extendSubscriptionItemFreeTrial('subi_123', {
  extendTo: new Date('2026-12-31'),
})

Backend API (BAPI) endpoint

This method in the SDK is a wrapper around the BAPI endpoint POST /billing/subscription_items/{subscription_item_id}/extend_free_trial. See the BAPI reference for more information.

Feedback

What did you think of this content?

Last updated on