#marinadinerly_code

1 messages ยท Page 1 of 1 (latest)

odd brambleBOT
#

๐Ÿ‘‹ 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.

jaunty remnantBOT
viscid grotto
#

๐Ÿ‘‹ happy to help

surreal stump
#

Hello, we provide a website builder for restaurant that allows them to take online orders, we use express connected accounts

viscid grotto
surreal stump
#

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

viscid grotto
#

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

surreal stump
#

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

jaunty remnantBOT
viscid grotto
#

this is basically a Direct charge

#

the on_behalf_of is for Destination Charges

surreal stump
#

What is the difference between these two?

#

because we are currently doing destination charges

median linden
#

๐Ÿ‘‹ 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

surreal stump
#

behalf_of doesn't support since we are using .net framework 4.5

#

So what we used above is the alternate of behalf of

median linden
#

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

surreal stump
#

How can we setup destination charges for C# or .NET can you share with us any documents?

#

Will this code work?

median linden
surreal stump
#

So that would also work to showcase the connected account statement description right?

median linden
#

Yes

surreal stump
#

Even though we cannot use on behalf of correct?

median linden
#

Why can't you use on behalf of?

surreal stump
#

on_behalf_of doesn't support since we are using .net framework 4.5

#

It is not supported on .net framework 4.5

median linden
#

That should not be the case at all

#

What is relevant is your Stripe .net SDK version