-
We have a subscription product that we fulfill in bulk Is it possible to set something on the subscription product such that its billed and creates the order on a specific day of the month? or alternatively, is there any way to programmatically update an existing subscription's next charge date to achieve the same effect after the fact? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
It's not possible to specify a calendar day for billing yet, but it would be possible to programatically update a subscription. For a new subscription, is the idea to bill on checkout and only create an order on the 1st of the month, or create the subscription on checkout and only charge/create order on the 1st? The simplest way would be to dynamically update the |
Beta Was this translation helpful? Give feedback.
It's not possible to specify a calendar day for billing yet, but it would be possible to programatically update a subscription.
For a new subscription, is the idea to bill on checkout and only create an order on the 1st of the month, or create the subscription on checkout and only charge/create order on the 1st? The simplest way would be to dynamically update the
trial_days
on the cart item to the 1st of the month. With the approach the customer can checkout, enter billing info, and the subscription is created but not charged until the 1st of the month (end of trial).