#binod - New Thread

1 messages ยท Page 1 of 1 (latest)

static veldt
#

Hi, there are lots of archived threads and people are chatty. Can you provide a link?

crystal vessel
#

I don't have a link

#

it was something like binod-txn

static veldt
#

Yeah I think you'll just have to summarize context and ask your new question.

crystal vessel
#

sorry, my internet went down

#

So, I have a question regarding transaction statement.

#

I have onboarded multiple clients using stripe connect account(express) and each of the clients have their individual websites.

#

when someone purchase from their websites, I want to send clients business details instead of platform owner business details

#

did you get my point?

#

??

static veldt
#

Okay so with Express connect how are you creating the charges? What details do you want to send?

crystal vessel
#

I am creating payment intent with destination account ID and on_behalf_of

static veldt
#

And this does not provide the info you are looking for?

crystal vessel
#

only problem is I'm getting name of business owner instead of business name in transaction heading

#

I want business name in transaction heading

static veldt
#

transaction heading
So the statement descriptor is not being set properly?

crystal vessel
#

you can see here, Nova Automotive B.V is platform owner's business name, I want to replace that with onboarded client's business name

#

??

#

hello??

mossy coyote
#

Hi there ๐Ÿ‘‹ taking over here

Give me a few minutes to get caught up.

crystal vessel
#

Ok

mossy coyote
#

So you'll want to make sure you're setting the statement descriptor correctly. There is a Dashboard aspect of how to set statement descriptors (see here: https://stripe.com/docs/statement-descriptors#static) and a dynamic aspect of setting the statement descriptor at the charge-level: https://stripe.com/docs/statement-descriptors#dynamic

For Payment Intents you can set the statement descriptor for cards via statement_descriptor_suffix: https://stripe.com/docs/api/payment_intents/object#payment_intent_object-statement_descriptor_suffix

crystal vessel
#

No no, statement descriptor appears in txn details

#

I want business name of client in txn title, that's it

#

I didnt find it in docs

mossy coyote
#

The screenshot you provided looks like bank account activity. Is that correct? And is that where you want the name of the client to show up?

crystal vessel
#

Yes, after IDeal payment, I get that

#

I want name of client's business name instead of Nova Automotive B.V

mossy coyote
#

That's a statement descriptor. That's what statement_descriptor and statement_descriptor_suffix are used for on Express accounts

crystal vessel
#

const paymentIntent = await stripe.paymentIntents.create({ amount: price_in_cents, currency: payload.currency, payment_method_types: ['card', 'ideal'], statement_descriptor: 'Test statement!', application_fee_amount: app_fee, transfer_data: { destination: account.id }, on_behalf_of: account.id });

#

I am using statement_descriptor as well. It's not a title, it appears inside txn details

mossy coyote
#

Where are you seeing "txn details"?

crystal vessel
#

after clicking on txn title

#

did you get it?

mossy coyote
#

No

#

can you post a screenshot?

crystal vessel
#

I already did

mossy coyote
#

Can you post again? it's not showing up

crystal vessel
mossy coyote
#

You're not using statement_descriptor_suffix can you try that?

crystal vessel
#

you mean use both statement_descriptor and statement_descriptor_suffix ?

mossy coyote
#

Yes. One is for card-based payments and one is for non-card based payments

crystal vessel
#

But, the problem is, it appears in txn details not in txn title

#

is it possible?

mossy coyote
#

The bank declares what they put and where. You'll want to reach out to them

crystal vessel
#

I was able send client's name but not the business name of client. So, just wanted to know if it's possible from stripe side

#

hello, why is it taking so much time?

queen rampart
#

It's quite busy with many users online right now, please bear with us

queen rampart
#

Do you have any example charge/payment intent IDs that are not ending up with the descriptor you expect based on that? I don't see any example IDs earlier in this thread.

crystal vessel
#

this is the payment intent ID: pi_3L8FrBHsW9ET26Jg0tosqC6F

queen rampart
#

ohhh thanks

crystal vessel
#

And Im using paymentIntent API. not charege API

queen rampart
#

i missed that this was using iDEAL -- most of the statement descriptor logic is very cards-focused

queen rampart
crystal vessel
#

but statement_descriptor is also available in payementIntent API

#

why use charges again?

queen rampart
#

That's just for review after the fact, not to submit anything

#

Looking into this example now

crystal vessel
#

Also, how do I customize receipt sent to email address?

queen rampart
#

Beyond that you'd need to implement your own receipts

crystal vessel
#

okay, I will look at it.

#

can you give me final update on txn statement? It's been a week im stuck at it

#

You there?

queen rampart
#

Yep - still reading

#

If you inspect the details of those payments do you see any trace of the descriptor you provided?

crystal vessel
#

descriptor appears in txn details

queen rampart
#

Ok then this is all behaving as expected, i think

#

The business name of the account is used deliberately to identify that business, but the bank can decide how to display related payment information, which is what you see

#

Some banks will show the business, some will show the descriptors

#

If the value you set is visible in the details, then its being passed through faithfully

crystal vessel
#

Yeah but the requirement is client business name in txn title

queen rampart