#Adarsh-business-name
1 messages ยท Page 1 of 1 (latest)
Hey there! Taking a look!
How are you creating these Payment Links?
API?
Dashboard?
Dashboard
Thanks. Give me a moment, server is quite busy this morning.
yes, I am using payment links
Okay well Payment Links are intended to be used when you don't know who the customer is before-hand.
But first can you clarify what you mean by Subscriber's business name?
Let me clarify. We are a B2B SaaS business. The business name is important for us. Even if we don't knoww ho the customer is before-hand, we must capture the business name during checkout.
In other words, all our subscribers are businesses.
Unfortunately we can't collect a custom field like this right now in Checkout so that's not possible ๐ฆ
Can this be done using the API?
not really. Like if you use Checkout or Payment Links, you can't ask for a business name, you'll havw to handle this separately, for example asking them the information after a successful payment when they reach the success_url
That sucks... it appears that Stripe checkout was designed with B2C businesses in mind. This is a very basic thing that any B2B SaaS business will require. We were looking to switch over to Stripe from another platform but we may have to reconsider now.
That's fair!
Is this at least in the future roadmap? If not, can it be added?
It's on our roadmap yes, but it's not scoped/planned for now
Just so you see the issue from our pov, if I were to get our customers to use the checkout page in its current form, the revenue reports would only show individual names and not business names. We would have a hard time managing our subscription and keeping track of which individual is associated with which business. We have two B2B SaaS businesses, and we are set up with Stripe for both. We'd really love to see this feature added sooner rather than later.
I understand but it's not going to happen soon I can tell you that
So you need to collect this yourself. You can store this information in metadata on the customer for example easily and have this in any of the reports you build. Lots of ways to do this
So basically, if we want to use the checkout page then we would get the business name in the success_url and save it to metadata. Correct?
yes that's what I would do in that case
you could update the customer's name in Stripe too to represent the business via https://stripe.com/docs/api/customers/update
Can I update the customer from the dashboard or does it have to be using the API?
Dashboard works yes!
there's an "edit details" on the left
but if you collect it with your code after the payment, it's easier to update with code
got it.. I'll give it a try. thank you!