我在一家在线课程提供商工作。这是客户流程:
student subscribe to teacherA | this creates a monthly Stripe subscription | student is billed
student subscribe to teacherB | this adds a subscriptionItem to the subscription | student is not billed
问题是,当我创建 subscriptionItem 时,不会立即向客户收费,而是开始免费访问高级内容。
根据我在文档中的红色内容,创建有很多订阅让学生订阅教师是一个糟糕的设计(无论如何,他们将单个客户的订阅限制为 25 个)。
然后我认为创建有很多 subscriptionItems 是个好主意,如果我错了请纠正我。
我正在寻找一种方法来实现这样的流程:
每位教师的订阅价格为 5 美元
01/01 | studentA subscribe to teacherA at | billed $5
01/15 | studentA subscribe to teacherB at | billed $2.5 # half of remaining month
02/01 | subscription auto invoice | billed $10
您知道如何实现这一目标吗?
慕斯王
相关分类