Skip to content
Advertisement

Stripe: change credit card number?

I’m using Stripe Payments and would like to give customers the possibility to change their credit card. Referring to https://stripe.com/docs/api#create_subscription -> source, I tried the following PHP-code:

JavaScript

This works, but unfortunately it unintentionally also creates a new customer ID:

Stripe Dashboard

The original customer ID was cus_6elZAJHMELXkKI and I would like to keep it.

Does anybody know the PHP-code that would update the card without creating a new customer?

Thank you very much in advance!

PS: Just in case you need it – this was the code that originally created the customer and the subscription:

JavaScript

Advertisement

Answer

I’ve just found the answer, maybe it helps someone of you, too:

You can replace the old card with the new one like so:

JavaScript
User contributions licensed under: CC BY-SA
10 People found this is helpful
Advertisement