Fulfillment orders for Prepaid Subscription

smathur
Tourist
8 0 3

I created a prepaid selling plan with the following configuration:

 

billingPolicy: { recurring: {
    interval: MONTH
    intervalCount: 3
    anchors: [
        {
            type: MONTHDAY,
            day: 15
        }
    ]
}}
deliveryPolicy: { recurring: { 
    interval: MONTH
    intervalCount: 1
    preAnchorBehavior: ASAP
    cutoff: 5
    anchors: [
        {
            type: MONTHDAY,
            day: 15
        }
    ]
}}

 

When I placed a test order on the 1st February (before the cut-off window), the order was created with the following fulfillAt dates:

Feb 1, Feb 15, Mar 15

However, as per the documentation, it should have been Feb 1, Mar 15, Apr 15.

I am referring to the section "Set the cutoff date for a selling plan" on this page: https://shopify.dev/tutorials/create-and-manage-fulfillments-for-a-prepaid-subscription-order

The example mentioned in the documentation clearly states the following:

 For example, if the customer completed the checkout on January 8, then the settings would function as follows:

  • NEXT - The fulfillAt date would be January 15, February 15, and March 15.
  • ASAP - The fulfillAt date would be January 8, February 15, and March 15.

Could you please confirm if the documentation mentioned against ASAP bullet point above is incorrect and should be the following:

  • ASAP - The fulfillAt date would be January 8, February January15, and March February 15.
Reply 1 (1)

dmitry_doronin
Visitor
2 0 2

I also think that there is a mistake in the documentation!