#vrk18
1 messages · Page 1 of 1 (latest)
What charge type do you use? Destination Charges or Separate Charges and Transfer?
destination charges
You may refer to the guide here: https://stripe.com/docs/connect/destination-charges#issuing-refunds
The amount will be refunded from the platform, but you can set reverse_transfer: true to revert the funds from connected account
thanks
No problem! Happy to help 😄
I am creating the payment intent as const paymentIntent = await stripe.paymentIntents.create(
{
amount: amount,
currency: "aud",
},
{
stripeAccount: expressConnectAccountID,
}
);
I am not sure what type of charges I am using
With stripeAccount header, this is a Direct Charge. Direct Charge is only recommended for Standard connected account. Express connected account should use Destination Charges or Separate Charges and Transfers