#vligas
1 messages ยท Page 1 of 1 (latest)
Hi ๐
Are you trying to get payment method details? Can you share and example payment ID?
yes! I'm trying to get the card issuer of a payment intent / charge, for example in this case https://dashboard.stripe.com/payments/pi_3LwJiOIuCVzArKms1V2ku3mX it is "BBVA Bancomer S.A."
Sign in to the Stripe Dashboard to manage business payments and operations in your account. Manage payments and refunds, respond to disputes and more.
Okay so for something like this you would use the Payment Intent API to retrieve the Intent by it's ID: https://stripe.com/docs/api/payment_intents/retrieve
And then the details would be in the payment_intent.charge.payment_method_details parameter
:c but the field is not present in the docs https://stripe.com/docs/api/charges/object#charge_object-payment_method_details-card
Complete reference documentation for the Stripe API. Includes code snippets and examples for our Python, Java, PHP, Node.js, Go, Ruby, and .NET libraries.
Oh, wait that's right you want the issuing bank, not the card brad. Yeah that isn't exposed AFAIK
okok I see :(, in case that we are presenting high rejection rates reports from a specific bank is there a way to compare the percentage of rejection from that specific bank against others to see if there is a problem?
There may be a way to get that information
But you'd need to reach out to support https://support.stripe.com to see if it's available
It's not something I can look into on my end
ok, thank you very much!