#.jovanm_
1 messages · Page 1 of 1 (latest)
Hello! We'll be with you shortly. Below are links to other discussions we've had with you in the past week in case you want to review that information. If your question is related to one of these previous discussions, please provide a comprehensive summary of the current state and what you need help with now. We help many users simultaneously, so a summary allows us to resolve your issue as soon as possible.
- .jovanm_, 31 minutes ago, 14 messages
- .jovanm_, 2 hours ago, 27 messages
- jovanm-test-clocks, 7 hours ago, 15 messages
- jovan-update-pm, 4 days ago, 12 messages
- .jovanm_, 4 days ago, 8 messages
- .jovanm_, 4 days ago, 5 messages
and 8 more
Can you share the event ID (evt_xxx) of payment_intent.succeeded event?
Thanks for sharing! The card source is used in this payment intent. You will be able to find the payment method under source parameter
hmmm, can you guide me here on how to retrieve the payment method under source parameter?
source is the payment method for older API. It's also a type of payment method. Your system can take card_xxx as the payment method
Ahhh, can I also use it to retrieve a customer paymentmethod?
https://stripe.com/docs/api/payment_methods/customer
Complete reference documentation for the Stripe API. Includes code snippets and examples for our Python, Java, PHP, Node.js, Go, Ruby, and .NET libraries.
You should be able to. I'd recommend giving a try in test mode
Okay, thanks for the information.
Another question, when will be the payment_method be null?
Right now, I discovered that doing some test subscriptions will make it null.
Is there other circumstance that the payment_method will be null?
It depends on the API being used under the hood. I'd recommend checking both payment_method and source to determine the payment method used
Okay, so only the
payment_method
source
will return the payment method being used? No other fields we are missing here?
Yup! It should be these two fields
Okay, thanks!