#mounika_api

1 messages ¡ Page 1 of 1 (latest)

night shoreBOT
plush cryptBOT
#

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.

night shoreBOT
#

👋 Welcome to your new thread!

⏲️ We'll be here soon! We typically respond in a few minutes, but in some cases we might need a bit more time (e.g., server's busy, you've got a complex question, etc.).

⏱️ We close idle threads, which makes them read-only. Once a thread is closed it won't be reopened, but you can start a new thread if you have another question.

🔗 This thread will always be available, even after it's closed. You can find it again using Discord's search, or you can save this link: https://discord.com/channels/841573134531821608/1260592799292850198

📝 Have more to share? Add details, code, screenshots, videos, etc. below.

storm geyser
#

@modest basin please don't jump in other threads

#

I am using Payments intents api through Java, created a payment intent .putExtraParam("payment_method_options[card][request_multicapture]", "if_available")
and then doing multi captures on those (My question is On creating a payment intent, .setTransferData(
PaymentIntentCreateParams.TransferData.builder()
.setDestination(payoutAccountId)
.setAmount(payRequest.getProductTotal().multiply(new BigDecimal(100)).setScale(0).longValue())
.build()
) I see i can set only one destination (Can i do more than one) and while doing multi capture (Can each capture have a different destination account
Because paymentIntentCapture is not taking destination

https://dashboard.stripe.com/test/payments/pi_3Pb0RpKZdo2LWv7y0SC76qzJ (This is the one i tested with )

modest basin
#

Ohh sorry, let me delete that

storm geyser
#

All good. For your question, I don't think there's a way to have more than one destination account.

You'd want to use Separate Charges and Transfers flow when more than one destination is involved in the payment flow & create separate transfers to each connected account (after all the captures have been done/ payment has been completed)