最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

c# - Unable to modify Stripe Schedule - Stack Overflow

programmeradmin2浏览0评论

I have the same issue as reported here but with the dotnet SDK. I am trying to follow the Docs to include the current Phase, to try to end it imedately and adding the next phase, but I always get the error:

'You can not update a phase that has already ended. Trying to update phase 0.',

if (stripeSubscription.Schedule != null) {
    if (stripeSubscription.Schedule.CurrentPhase != null) {
        var currentPhase = stripeSubscription.Schedule.Phases.First(p => p.StartDate == stripeSubscription.Schedule.CurrentPhase.StartDate && p.EndDate == stripeSubscription.Schedule.CurrentPhase.EndDate);

        phases.Add(new SubscriptionSchedulePhaseOptions() {
            Items = [.. currentPhase!.Items!.Select(
                i => new SubscriptionSchedulePhaseItemOptions() {
                    Price = i.PriceId,
                    Quantity = i.Quantity
                }).ToList()
            ],
            Discounts = [.. currentPhase.Discounts.Select(d => new SubscriptionSchedulePhaseDiscountOptions{
                Coupon = d.CouponId                        
            })],
            Metadata = currentPhase.Metadata,
            StartDate = currentPhase.StartDate,
            EndDate = SubscriptionSchedulePhaseEndDate.Now
        });
        initialPhases[0].StartDate =  SubscriptionSchedulePhaseStartDate.Now;
    }

    phases.AddRange(initialPhases);

I have the same issue as reported here but with the dotnet SDK. I am trying to follow the Docs to include the current Phase, to try to end it imedately and adding the next phase, but I always get the error:

'You can not update a phase that has already ended. Trying to update phase 0.',

if (stripeSubscription.Schedule != null) {
    if (stripeSubscription.Schedule.CurrentPhase != null) {
        var currentPhase = stripeSubscription.Schedule.Phases.First(p => p.StartDate == stripeSubscription.Schedule.CurrentPhase.StartDate && p.EndDate == stripeSubscription.Schedule.CurrentPhase.EndDate);

        phases.Add(new SubscriptionSchedulePhaseOptions() {
            Items = [.. currentPhase!.Items!.Select(
                i => new SubscriptionSchedulePhaseItemOptions() {
                    Price = i.PriceId,
                    Quantity = i.Quantity
                }).ToList()
            ],
            Discounts = [.. currentPhase.Discounts.Select(d => new SubscriptionSchedulePhaseDiscountOptions{
                Coupon = d.CouponId                        
            })],
            Metadata = currentPhase.Metadata,
            StartDate = currentPhase.StartDate,
            EndDate = SubscriptionSchedulePhaseEndDate.Now
        });
        initialPhases[0].StartDate =  SubscriptionSchedulePhaseStartDate.Now;
    }

    phases.AddRange(initialPhases);
Share Improve this question edited 2 days ago Joel Coehoorn 417k114 gold badges578 silver badges813 bronze badges asked 2 days ago WeissvonnixWeissvonnix 7637 silver badges23 bronze badges
Add a comment  | 

1 Answer 1

Reset to default 0

If you examine your request logs, is the payload for phases as you expect? If the first phase is already over, then it should be omitted instead.

It's not clear what initialPhases contains aside from the 0th start date you override.

Likely you will need to provide a concrete example request (eg, req_12345) and work with Stripe Support to help you out here if there are not outward obvious issues.

发布评论

评论列表(0)

  1. 暂无评论