#marinadinerly_code
1 messages ยท Page 1 of 1 (latest)
๐ Welcome to your new thread!
โฒ๏ธ We'll be here soon! Typically we respond in a few minutes, but sometimes we might take a bit longer if the server is busy or if you have a particularly tricky question.
โฑ๏ธ We close idle threads, which makes them read-only. Once a thread is closed it won't be reopened, but you can always start a new thread if you have another question.
๐ This thread will always be available, even after it's closed. You can find it again using Discord's search, or you can save this link: https://discord.com/channels/841573134531821608/1220353447162023987
๐ Have more to share? Add more details, code, screenshots, videos, etc. below.
๐ happy to help
Hello, we provide a website builder for restaurant that allows them to take online orders, we use express connected accounts
have you gone over this doc yet https://docs.stripe.com/connect/statement-descriptors ?
Yes, (I am chatting on behalf of my developer here) He said he added the on_behalf_of code but it is still not working
did they set the static statement descriptor settings on the connected account?
please follow the steps on that doc first
and if you still don't see the right statement descriptor, please share the request ID so I could take a look
Find help and support for Stripe. Our support site provides answers on all types of situations, including account information, charges and refunds, and subscriptions information. Get your questions answered and find international support for Stripe.
var requestOptions = new RequestOptions
{
StripeAccount = "{{CONNECTED_ACCOUNT_ID}}",
};
var service = new PaymentIntentService();
service.Create(options, requestOptions);
He applied this code but he is having issues - it is C# he is doing this on
What is the difference between these two?
because we are currently doing destination charges
๐ stepping in
Setting on_behalf_of is the correct way to do this
You don't want to use DIrect Charges with Express accounts
So I'll need an example where you set on_behalf_of to look at
An example PaymentIntent ID if you have it
behalf_of doesn't support since we are using .net framework 4.5
So what we used above is the alternate of behalf of
Oh you are doing DIrect charges above, yes.
Which we don't recommend for Express accounts
But that would also set the statement descriptor as the Connected Account
So would still need an example
How can we setup destination charges for C# or .NET can you share with us any documents?
Will this code work?
Yes that looks fine. You would use it with transfer_data.destination as well to move the funds to your Connected Accounts. The docs are https://stripe.com/docs/connect/destination-charges
So that would also work to showcase the connected account statement description right?
Even though we cannot use on behalf of correct?
Why can't you use on behalf of?