#Lord Fontans-source-application-fee

1 messages · Page 1 of 1 (latest)

hoary oyster
#

Hello, yes that should be possible. Not on the source itself but on the Charge that you create later

#

What does your current payment flow look like?

dawn obsidian
#

in the moment I am just studing de flow to implement in a customer, i was testing payments with credit cards, when is make a sell I split de amount with destination charges using de payment intent, but my customer want payments with multibanco(source api)

#

with credit card I create this way
$paymentIntent = \Stripe\PaymentIntent::create([
'amount' => 10000,
'currency' => 'eur',
'application_fee_amount' => 2000,
'transfer_data' => [
'destination' => 'destiny_count',
],
]);

hoary oyster
dawn obsidian
#

lol, thank you, I was creating all the charges with payment intent, I forgot to see the charge object

#

i think the sdk from javascript was creating it for me