#miles_tgcf

1 messages · Page 1 of 1 (latest)

earnest sunBOT
tiny onyx
#

Hi there!

versed galleon
#

Hello!

tiny onyx
#

Can you clarify what you mean by "embed our platform fees into the donations"?

versed galleon
#

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

tiny onyx
versed galleon
#

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

tiny onyx
#

I'm sorry I'm confused by your question.
How are you accepting payments currently$? Checkout Session, Payment Element, something else?

versed galleon
#

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

tiny onyx
#

using payment links
Oh, so you want to create Destination Charges with Payment Links?

versed galleon
#

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

tiny onyx
#

Actually I don't think it's possible to use Direct Charges for Payment Links.

versed galleon
#

We aren’t using direct charges

tiny onyx
#

Sorry I mean Destination Charge are not supported. But you could use Direct Charge.

versed galleon
#

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.

With Connect, you can create charges on your platform account, take fees, and then transfer remaining funds to your connected accounts.

#

Stripe recommends using destination charges for Express or Custom accounts.

tiny onyx
#

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.

versed galleon
#

Where is the programming work performed

tiny onyx
#

And it can also be done from the Stripe dashboard, when you create the Payment Link and click on "after the payment" tab

versed galleon
#

Where is that as this is what the after payment screen on our sample connected acct “acct_1Nm1xRPpOYwpm1Gq”

tiny onyx
#

Did you enable your account to use Stripe Connect?

versed galleon
#

Indeed, I have 3 completed connected accounts

#

Something isn’t right here

earnest sunBOT
spring hollow
#

👋 taking over for my colleague. Let me catch up.

versed galleon
#

No problem take your time

#

All caught up?

spring hollow
#

please be patient I will get back to you asap

versed galleon
#

Continuing the patience lol

spring hollow
#

I'm trying t access your account ID, but it seems it's wrong

#

acct_1Nm1xRPpOYwpm1Gq
would you mind double checking please

versed galleon
#

acct_1NmlxRPpOYwpmlGq

#

copied and pasted

#

thats one of the connected accounts

spring hollow
versed galleon
#

yes

spring hollow
#

you need to use the platform account to create the destination charge

versed galleon
#

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

spring hollow
#

and at the end you will have the screen that my colleague shared

versed galleon
#

so i should be selecting home, share a payment link, then go to after payment?

spring hollow
#

yes

versed galleon
#

I did that and got the same result

spring hollow
#

taking a quick look

versed galleon
#

Thank youuu

spring hollow
#

OHHHHH now I see! you have chosen "Customers choose what to pay"

earnest sunBOT
spring hollow
#

that's why you're missing the Connect section

versed galleon
#

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

spring hollow
#

I'm not sure you can do that

versed galleon
#

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

silk root
#

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.

versed galleon
#

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.

silk root
#

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',
  },
});
versed galleon
#

where do we go to enter this code in the api

#

nobody has been able to answer this for me

silk root
#

are you you a developer yourself?

silk root