We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
transactionFee
I'm trying to use stripe connect and I saw I should be able to set a transactionFee but it does nothing in my case.
$this->transaction_data = [ 'amount' => $order_total, 'currency' => $event->currency->code, 'description' => 'Order for customer: ' . $order_email, 'paymentMethod' => $this->options['paymentMethod'], 'receipt_email' => $order_email, 'returnUrl' => $returnUrl, 'confirm' => true, // Add the configured payment gateway fees to the existing fees. 'transactionFee' => $gateway_fees + $fees , // Pass the destination ID 'destination' => $account_payment_gateway['transfer_data_destination_id'] ];
The transaction transfer to the connected account works well, but the transactionFee isn't used.
Stripe's log on the /v1/payment_intentsshow no sign of application_fee parameters:
/v1/payment_intents
application_fee
{ "amount": "1672", "currency": "eur", "description": "Order for customer: [email protected]", "transfer_data": { "destination": "acct_1JXXL0JqGbicBCJ7" }, "receipt_email": "[email protected]", "payment_method": "pm_1JpfVzDhKAJibjYZurgJEjSk", "confirmation_method": "manual", "capture_method": "manual", "confirm": "true", "return_url": "https://tickets.out.lu/e/4/checkout/success?is_payment_successful=1" }
Also, transactionFee show nowhere in the entire codebase
The text was updated successfully, but these errors were encountered:
No branches or pull requests
I'm trying to use stripe connect and I saw I should be able to set a
transactionFee
but it does nothing in my case.The transaction transfer to the connected account works well, but the transactionFee isn't used.
Stripe's log on the
/v1/payment_intents
show no sign ofapplication_fee
parameters:Also,
transactionFee
show nowhere in the entire codebaseThe text was updated successfully, but these errors were encountered: