How to use Recharge quick actions

Last updated: March 11, 2025

Overview

Use Recharge's Quick Action URLs to help your customers manage their subscriptions!

Using the templating syntax {{ trigger.function() }} you can create dynamic links and buttons to dynamic subscription management actions in any campaign or automation email.

Read on to lean more about quick actions.

Before getting started

  1. Set up your Shopify integration

  2. Set up your Recharge integration


Add a Quick Action URL to an Email

In this example, we'll add a URL that takes customers to their subscription portal. See below for all available quick actions.

To add a quick action URL to an email:

  1. Add the following text to your email: {{ trigger. }}

  2. After the . and before the }, enter the URL function of the quick action you want to use (for example, if you want to link customers to their subscription pages, your URL function will read as {{ trigger.getShopifyViewCustomerPortalURL(page = 'subscriptions') }})

  3. Click the preview button to make sure the URL renders properly.


Available Quick Action URLs

See Recharge's detailed instructions on adding your store's variables to quick action URLS.

Description

Notes

URL function

Link customer to their subscriptions page

getShopifyViewCustomerPortalURL(page = 'subscriptions')

Ship next scheduled subscription order immediately

getShopifyShipNextOrderURL()

Skip next scheduled subscription

getShopifySkipNextOrderURL()

Delay next scheduled delivery

Set count to desired number of days

getShopifyDelayNextOrderURL(interval = 'days', count = 1)

Add a specified product to the next scheduled subscription order

Set  variantID to desired product

getShopifyAddOneTimeProductURL(variantID)

Change specified subscription

Set  variantID to desired subscription

getShopifySwapSubscriptionURL(variantId)

Reactivate customer's canceled subscription

getShopifyReactivateCancelledSubscriptionURL()

Apply a specified discount to next order

Set discountCode to desired discount

getShopifyApplyDiscountToNextOrderURL(discountCode)

Reactivate a canceled order with specified discount

Set  discountCode to desired discount

getShopifyReactivateCancelledWithDiscountURL(discountCode)

Reactivate a canceled order with specified product

Set  variantID to desired product

getShopifyReactivateCancelledWithOneTimeProductURL(variantId)