#miles_tgcf
1 messages · Page 1 of 1 (latest)
Hi there!
Hello!
Can you clarify what you mean by "embed our platform fees into the donations"?
We are trying to add destination charges to express accounts but can’t find anywhere to add or create the charges on the stripe application
Is your question how to create Destination Charges? If so, you should read this: https://stripe.com/docs/connect/destination-charges
Where are we supposed to go to write or develop the code needed to make it a consistent workflow
You tell us what parameters needed but nothing on where to change or update the parameters
I'm sorry I'm confused by your question.
How are you accepting payments currently$? Checkout Session, Payment Element, something else?
Why would you be confused? Accepting payments with products on connected accounts using payment links and all of that has been working but we have not been able to add our platform “destination charges” as there is no clear way to update the desired parameters
using payment links
Oh, so you want to create Destination Charges with Payment Links?
Sure
We will need to deduct a percentage from each transaction made on any of our linked connected accounts
We believe that destination charges on express accounts are the way to achieve that but nothing explains where we enter the desired parameters or modify the code
Actually I don't think it's possible to use Direct Charges for Payment Links.
We aren’t using direct charges
Sorry I mean Destination Charge are not supported. But you could use Direct Charge.
How can we make this work as we know it is possible to achieve destination charges on express accounts. Stripe tells us destination charges on express accounts are supported per this link, https://stripe.com/docs/connect/destination-charges
All we are looking for is a place to enter in the desired parameters so we can deduct our fees.
Stripe recommends using destination charges for Express or Custom accounts.
For sure you can create Destination Charges for Express account. But not with Payment Links. You could use Checkout Session for example instead. But this requires some programming work.
Where is the programming work performed
Wait I was wrong. Here's how to create a Destination Charge for a Payment Link: https://stripe.com/docs/connect/payment-links#destination
And it can also be done from the Stripe dashboard, when you create the Payment Link and click on "after the payment" tab
Where is that as this is what the after payment screen on our sample connected acct “acct_1Nm1xRPpOYwpm1Gq”
Did you enable your account to use Stripe Connect?
👋 taking over for my colleague. Let me catch up.
please be patient I will get back to you asap
Continuing the patience lol
I'm trying t access your account ID, but it seems it's wrong
acct_1Nm1xRPpOYwpm1Gq
would you mind double checking please
is this screenshot from your connected account?
yes
the screenshot my colleague shared is from the platform account
you need to use the platform account to create the destination charge
i went to the connect tab on the platform acct, selected acct_1NmlxRPpOYwpmlGq, went to products and clicked on the test product we are trying to implement destination charges on. if im doing it wrong, please explain the correct way
that's not how you do it, you create the payment link directly on your platform
and at the end you will have the screen that my colleague shared
so i should be selecting home, share a payment link, then go to after payment?
yes
taking a quick look
Thank youuu
I can see it on your dashboard https://dashboard.stripe.com/payment-links/create
OHHHHH now I see! you have chosen "Customers choose what to pay"
that's why you're missing the Connect section
correct, this is a donations based platform assisting with in person transactions
we cant tell people what to pay as there is no physical product
I'm not sure you can do that
i mean its not very different as we are only looking to have a percentage of every transaction diverted to the platform and the remainder staying in the connected acct. platform pays stripe fees. that is destination charges explained
We are trying to get this off the ground but we need some creativeness on your end in order to make this work
makes sense! But yeah I think for right now we don't support this in our product, choose-your-amount Prices and PaymentLinks + Connect. Let me just check something in case that's only a Dashboard limitation, back in a while.
Thanks so much, I'll be back around 715. This is an extremely lucrative service that will provide extreme revenue generation for all parties involved. My CTO and I would love to arrange a meeting with your developers to make this reality if this is not supported.
hmm maybe chat to our support or sales teams instead then
so anyway I tried creating a PaymentLink in the API using a choose-your-own-price Price and Destination Charges and it is created successfully and worked fine and processed the payment and took a fee, so maybe it's just the Dashboard that doesn't let you do it.
const paymentLink = await stripe.paymentLinks.create({
line_items: [
{
price: 'price_1O2XHAJoUivz182DmGoTo4lr',
quantity: 1,
},
],
application_fee_amount:100,
transfer_data: {
destination: 'acct_1NSyApR2p11n89D4',
},
});
where do we go to enter this code in the api
nobody has been able to answer this for me
are you you a developer yourself?
at a high level — you create a web application that hosts your website and payment experiences and you develop code in that application, part of which would be calling the Stripe API.