#binod - Transaction Statement
1 messages ยท Page 1 of 1 (latest)
Let me give an example, I have multiple websites test1.example.com, test2.example.com.. each domain is connected to own stripe express account.
Now, when buyer purchase an item from test1.example.com using IDeal payement, I want to send business name of connnected account(express) in the transaction statement
What do you mean by transaction statement? Do you mean the statement_descriptor which appears on the bank records?
Since these are Express accounts, I assume you are using Destination charges?
I mean title of that particular transaction. Yes, I am using destination charge
Can you share an example of what you mean?
But there is no field for "title". That doesn't exist in our APIs so I'm trying to understand what you mean
I mean title of transaction
Right and I'm saying I don't know what that means. Can you show me an example of where you want to see a specific business name?
This is how transactions appear. I want to replace Nova Automotive B.V. with associated client business name.
Well you aren't passing anything for the statement descriptor in here so it's defaulting the whatever is set on the Platform account. Because that is where the Payment Intent is being created.
No, statement descriptor only appears after clicking on it in details section
And you will still have the shortened statement descriptor from the Platform
You can see in my code snippet, I have assigned Test statement! in statement_descriptor field
Do you have request IDs for these Payment Intents?
Here's how you can find a request ID: https://support.stripe.com/questions/finding-the-id-for-an-api-request
I'm looking but it's also busy
ok
Okay so in this case, even though you sent a statement_descriptor when creating the Payment Intent the calculated_statement_descriptor (which is what we send to the banks) was still null. I'm looking into why that might be
Do you have a request ID for one of those?
not sure this might be the one req_vgBoCaktFjlESU
Again i see the statement descriptor on the Payment Intent but it doesn't make it to the Charge.
so, what should I do?
I'm asking some of my colleagues
yes please..im stuck since last week
Hi ๐
do you have screenshots of what the payment intents you shared with me look like on the bank statement?
Okay that is what we expect. We pass the Connect Account's name and the Statement Descriptor but then it's up to the bank what they choose to display
Can't we pass business name instead of person name?
There is no business name for this account: acct_1L67RAQjZTZuIPDX. Try setting a business name and see if that changes what is displayed
And the Dashboard nickname is 'Nova Automotive B.V ' so the descriptors are setting the information they have
So you can update the Account via the API: https://stripe.com/docs/api/accounts/update?lang=python#update_account-company-name
And set the company.name parameter
You can also edit Business Name on the Express Account directly in the Dashboard
Well then you'd have a different problem. But lets start with the one we've identified
const updateAccount = async () => { const account = await stripe.accounts.update('acct_1L67RAQjZTZuIPDX', { 'company.name': 'Demo Corp' }); console.log('Updated===>', account); };
Its throwing an error
error => unknown parameter
Ah, okay. Try doing it via the Dashboard.
I can't test it in live..is it possible to test in dev mode?
๐ stepping in here as Snufkin needs to step away.
The "legal entity name" is what will get displayed here. Since this is a type: individual, their legal entity name will be the individual name on the account.
Not really for non-card charges since this is mostly at the discretion of the bank for what they show. I do agree there should be more transparent information from the API for these non-card LPMs for what is being passed. I'd recommend contacting our Support team (https://support.stripe.com/contact/login) and passing along that feedback. They can also let you know if there is any work around for the individual type accounts.
Find help and support for Stripe. Our support center 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.
okay, I don't have IDeal payment to test. My client will test it tomorrow. If need further support can we unarchive this conversation?
Yeah we will be here so you can always come back and ask follow up questions!
okay, thank you for the help