#alexanderg-pm-id
1 messages · Page 1 of 1 (latest)
Hello 👋
could you provide more context around how these payment methods are being generated?
User fills in CC details online and these are run by Stripe which returns a payment method.
Using Stripe widget for GUI
Using Stripe widget for GUI
I'm not sure what you mean by this, but as far as my understanding goes, a new payment_method object will be created each time CC details are submitted with the request instead of a valid payment_method_id.
So to summarize,
if you submit the same card details multiple times a new payment_method object will be created with its own unique id
So even if CC details are the same new payment method object (and hence id) is created?
yes unless you provide the previously generated payment_method_id with the request
Great, thank you!