#amirbabikir

1 messages · Page 1 of 1 (latest)

paper falconBOT
stark gull
#

Hello 👋
Once a payment method has been tokenized, there's no way for anyone to decrypt it
So $existing_payment_method->card->number won't really work in this case.

solemn warren
#

thanks you hanzo for your reply.
is there anyway to create a new payment intent based on data from existing pi?

stark gull
#

Unfortunately, no. You'd need to create a SetupIntent or a PaymentIntent with setup_future_usage & recollect the PaymentMethod

#

It is because you're using a third-party plugin. If this was your own integration, you'd only need to add setup_future_usage to your create PaymentIntent code.

solemn warren
#

yes, that is the problem. They don't have that feature yet.

stark gull
#

In this case though, issuers can trigger 3DS which you'd need to handle by bringing your customer back on-session and complete 3DS

solemn warren
#

that will not work for my case. We sell credit points for voip calling and we wanted to add a feature that the customer balance will automatically be topped-up when it falls below a specific limit. so that the call will not be disconnected

#

will think about starting my own integration if the third party cannot add this feature soon.

Any guidance on php example and how to create checkout forms ? is there ready forms from stripe that i can just call?

stark gull
solemn warren
#

thanks , will check it