#wabisabi2019
1 messages · Page 1 of 1 (latest)
Confirmation is separate from capture, so its really up to you
confirmation deals with how you collect payment details / create payments, while capture is how you process orders/finalize, for example
You can confirm at creation and capture immediately or use manual capture later, or you can create with manual capture and confirm separately client side later.
I see. Thank you.
So this wouldn't really make sense to place a hold right?
@base_payment_hold %{
# 100 cents
amount: 100,
confirm: true,
currency: "usd",
payment_method_options: %{card: %{capture_method: "manual"}}
}
it makes sense to remove the confirm field because it is a "hold" correct? Makes sense to you?
Makes sense in my head but curious if I'm missing something.