#satyra1

1 messages · Page 1 of 1 (latest)

karmic galeBOT
#

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.

rapid junco
#

Hi 👋 this is pretty vague, so I may not be grasping your goal, but in general no. Payments can't be split, you'd handle the logic for splitting the payment on your end and then create two (or more) payments in Stripe to process each split of the payment.

cedar sentinel
#

so what are alternatives for example if i handle it myself

#

for example there are 2 users that are trying to split costs

#

one of them paid 2nd ones payment didnt go threw in reasonable amount of time

#

how can i handle it

#

i meen handle returning money

rapid junco
#

Depends on how you want the flow to behave. Do you want to actually process each payment immediately and fully, and then have to refund one of the payments if the other fails?
https://stripe.com/docs/refunds

Do you want to retain the funds from one payment if the other fails and allow both parties to try to pay the remaining cost?

Would you rather only authorize the payments (if you're in a market where the card issuers support that) until all parts are authorized, and then capture the funds?
https://stripe.com/docs/payments/place-a-hold-on-a-payment-method

cedar sentinel
#

Is there an option to "freeze" either payment until both go threw?

rapid junco
#

No

#

I also don't know what you mean by "freeze" there

cedar sentinel
#

Hold on sending funds until both are good

rapid junco
#

There isn't prebuilt logic to prevent one payment from progressing until the other is in a desired state, you will need to custom build that logic but that's the feature you would use to accomplish that.