#lmifflen
1 messages · Page 1 of 1 (latest)
There's some limitations. Have you checked the list here? https://stripe.com/docs/customer-management#customer-portal-limitations
I did. I have been doing it through the api. I have 2 apps that I am using this in. My first app I have used the python api to create the bpc, and then to create the billing portal session like this:
configuration=buyer_bpc,
customer=customer,
return_url="https://villagewellth.com",
)
It has always allowed me to have users update their subscriptions.
Now I am testing it with a nextjs app and am creating it like this:
customer,
return_url: `${getURL()}/account`,
configuration: 'bpc_1O8O6aI5J5g9FwjlAPBsnSEH',
});
but the portal session doesnt show the update options
ah it might be the tax behavior
Yep that was it. The test subscription did not have a tax behavior set so my other ones that i wanted to update to were not beign shown.
Gotcha yeah makes sense
Figured it out. Thanks!