我正在NodeJS中使用Stripe创建订阅。我希望在结算期即将结束时生成发票。例如,如果开票时间为9月1日至30日,我希望在9月30日生成发票。 API文档说billing_cycle_anchor应该这样做。但是,当我使用它时它没有效果,因为会立即生成发票并向用户收费。下面的代码示例。
stripeSubscription = await stripe.subscriptions.create({
customer: id,
items: [{ plan: planId }],
billing_cycle_anchor: moment()
.add('30', 'days')
.unix();,
});
如何在结算期结束时获得每月订阅以生成和收费?