#tiki-connect-manualcapture

1 messages · Page 1 of 1 (latest)

blissful vectorBOT
#

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.

primal dune
#

new question

compact hazel
#

@primal dune it depends on your integration for your first question and where the charge is created

primal dune
#

This is the payment intent creation params object

            .setAmount(amountInCents)
            .setApplicationFeeAmount(taxInCents)
            .putMetadata("tax", totalTax.toString())
            .putMetadata("commission", totalCommission.toString())
            .putMetadata("discount", totalDiscount.toString())
            .putMetadata("order_id", orderId)
            .setCurrency(currencyCode)
            .setCustomer(stripeCustomerId)
            .setPaymentMethod(paymentMethodId)
            .setConfirm(true)
            .setConfirmationMethod(PaymentIntentCreateParams.ConfirmationMethod.MANUAL)
            .setCaptureMethod(PaymentIntentCreateParams.CaptureMethod.MANUAL)
            .build();```
compact hazel
#

That doesn't tell me much sorry. There are multiple charge flows and you need to tell me which one exactly you are using: Direct Charges, Destination Charges or Separate Charges and Transfers?

primal dune
#

I think we are using Direct Charges

#

that depends on the account types, right?

compact hazel
#

correct

primal dune
#

We mostly have standard account types

compact hazel
#

So if you use Direct Charges, they can see the payment in their account's Dashboard and capture it themselves.
But the balance doesn't change until capture.

#

tiki-connect-manualcapture

primal dune
#

Perfect, thanks for confirming that!