Rotating Subscriptions

Subscribe customers to a curated, pre-planned series of products using ordinal or time-window selection rules

View as Markdown

Rotating Subscriptions allow your customers to subscribe to a curated, pre-planned series of products. Ordergroove offers two different options to tailor your subscription plans:

  • Time Window: The customer will receive a product that is determined based on when the order is shipped. Read the Time-Window documentation for more information.
  • Ordinal: The customer will receive a product that is determined by where that order falls within a predefined list of order delivery products. Read the Ordinal documentation for more information.

How Rotating Subscriptions Work

Selection Mechanism

Each type of Rotating Subscription program offers a unique way to determine what delivery product a customer should get with their order, allowing you to choose what works best for your business.

By configuring Selection Rules you can build out a Rotating Subscription program for your customers. Please refer to the documentation for more details on how each type of program works, and how to set up Rotating Products and Selection Rules.

Pricing

Three different pricing strategies are available for Rotating Subscriptions:

  1. Best Price (default): The price of the Rotating Parent Product and the Delivery Product will be compared. The lower price will be used.
  2. Rotating Parent Product Price: The price of the Rotating Parent Product will always be used.
  3. Delivery Product Price: The price of the Delivery Product will always be used.

Pricing can be configured via the appropriate “management” endpoint. For example, see the Time Window management endpoint documentation.

Bundles + Rotating Products

You can add rotating products to bundles just like any other regular products and they’ll work fine right out of the box. Everything that applies to regular products applies to rotating ones for creating and editing bundles. See Bundle Subscriptions.

Prepaid + Rotating Products

You can sell your rotating products as prepaid just the way you would any other regular product. See Managing Prepaid Renewal Behaviors.

Caveats

We do not currently support any special logic for determining the initial checkout item’s rotating product. We are currently working on adding support for seamless initial checkout fulfillment, but for the time being recommend simply sending out a default initial checkout product for this rotating product SKU.

How to Create a New Rotating Product

  1. Choose or create a regular product to set up as a rotating product. The product’s name, description, and image should reflect the fact that it is a rotating product. Use the external product ID of the product you have chosen or created.
  2. Define the selection rules for your rotation.
    • Follow the validation rules described in the program type’s documentation.
  3. Call the appropriate management API with your configuration, and your Rotating Product setup is complete.

How to View Your Rotating Product Configuration

You can view your configuration by querying for the product in the Product List or Products Retrieve APIs and checking for the product_selection_rules property. Here’s an example for a Rotating Product that uses Time-Window for its selection criteria:

1"product_selection_rules": [
2 {
3 "public_id": "e1a61e620ed411ef8740767250df1ed7",
4 "selection_rule_type": "TIME_WINDOW",
5 "product_selection_list_elements": [
6 {
7 "public_id": "e1a626000ed411ef8740767250df1ed7",
8 "product": "48398751432995",
9 "starting_date": "2024-05-01T00:00:00Z"
10 },
11 {
12 "public_id": "e1a62b140ed411ef8740767250df1ed7",
13 "product": "48398752317731",
14 "starting_date": "2024-06-01T00:00:00Z"
15 },
16 {
17 "public_id": "e1a62fe20ed411ef8740767250df1ed7",
18 "product": "48398760149283",
19 "starting_date": "2024-07-01T00:00:00Z"
20 }
21 ],
22 "configuration": {
23 "reveal_moment": "ORDER_PLACEMENT",
24 "pricing_policy": "BEST_PRICE"
25 }
26 }
27]

How to Update an Existing Rotating Product

  1. Choose an existing Rotating Product. If you don’t have one yet, you must create one before you can update it.
  2. Decide which selection rules you want to add, delete, or update.
    • All the same validation rules apply — if you don’t follow them your update won’t pass validation.
    • Your changes will be reflected in all items that haven’t had their Order Reminder sent or gone through the Send Now flow.
    • You can add a new selection rule.
    • You can delete an existing selection rule.
    • You can update an existing selection rule with a different product and/or starting date.
  3. Call the appropriate management API with your configuration, and your Rotating Product update is complete.