#wandriputra
1 messages · Page 1 of 1 (latest)
I don't understand the question
sorry, my english not too good. but let me try again
first I have an app, this app allow user to connect their iDeal Bank account and use it for future.
https://stripe.com/docs/payments/ideal/set-up-payment
then we can get this information in our dashboard. its mean user can connect his bank account and use SEPA for next payment
but, I have some workflow changes, user needs to top up with iDeal without choosing a bank account anymore in FE.
so I need to fetch the bank code from somewhere that belongs to my user and add the information here.
I hope you get what I mean.
iDEAL PMs are not reusable, that's why we generate a reusable SEPA PM from the iDEAL details which can be re-used
If you want to collect payment via iDEAL again, you'll need to re-collect their iDEAL details
yes, user still needs to confirm on their bank app right? but can we just automatically set the bank name before the iDeal open the bank app?
I just want to get this the rebobank value from user SEPA payment methods
That should be exposed on that pm_xxx object?
{
"paymentMethods": [
{
"id": "pm_1Mmfk7D0pMVBxo7FTB63czGg",
"object": "payment_method",
"billing_details": {
"address": {
"city": null,
"country": null,
"line1": null,
"line2": null,
"postal_code": null,
"state": null
},
"email": "wandriputra@gmail.com",
"name": "FirebaseNull User",
"phone": null
},
"created": 1679068979,
"customer": "cus_NXjI8LA9KErRl3",
"livemode": false,
"metadata": {},
"sepa_debit": {
"bank_code": "RABO",
"branch_code": "",
"country": "NL",
"fingerprint": "tf0e3UscMuthxssS",
"generated_from": {
"charge": "py_3MmfjqD0pMVBxo7F1UT6nVjh",
"setup_attempt": null
},
"last4": "5264"
},
"type": "sepa_debit",
"isDefault": true
}
]
}
it's only return RABO but I need rabobank
Yeah I guess that's some kind of mapping or private field that the Dashboard uses unfortunately
so do you have any suggestion to my case?
For what exactly?
for this case?
user needs to top up with iDeal without choosing a bank account anymore in FE but he still need to confirm in his bank app
As explained, that's not possible with iDEAL. You can either charge the SEPA PM which is reusable, or if you want the iDEAL flow then you'll need to take your customers through checkout flow again