#BPerez-auth
1 messages · Page 1 of 1 (latest)
Are you looking for separate auth and capture (https://stripe.com/docs/payments/capture-later) ? The authorization will still appear on their account, but it won't actually be captured until a later date
You know how when you send an offer o ebay you wont see anything on your bank account unless the other user accepts your offer? Im wondering if Stripe has that capability.
If separate auth and capture is not work you're looking for then you're only other option would just be to wait to actually authorize the payment until the offer is accepted.
So if we were to wait to authorize the payment once the offer is accepted. On our app it would be like this
User A sends user B an offer. (Here we would collect User A payment info)
User B accepts User A's offer (Here we would collect User B payment info and then authorize both users payment at the same time)
Does this sound like something that could work?
Something like that - the only issue with that is that I imagine you'd either want them to both succeed or to both fail.
Yeah if one were to fail I think we would just have to void the transaction. But I feel it may be our only option. Unless you have other suggestions.