#lmifflen

1 messages · Page 1 of 1 (latest)

fringe sapphireBOT
lofty hawk
karmic quiver
#

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

lofty hawk
#

You're using the same configuration in both apps?

#

Oh this?


karmic quiver
#

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.

lofty hawk
#

Gotcha yeah makes sense

karmic quiver
#

Figured it out. Thanks!