#maxbash_api
1 messages ¡ Page 1 of 1 (latest)
Below are links to other discussions we've had with you in the past week in case you want to review that information. If your question is related to one of these previous discussions, please provide a comprehensive summary of the current state and what you need help with now. We help many users simultaneously, so a summary allows us to resolve your issue as soon as possible.
- maxbash_code, 22 hours ago, 30 messages
- maxbash_code, 1 day ago, 12 messages
- maxbash_unexpected, 1 day ago, 10 messages
đ 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/1245406238229925968
đ Have more to share? Add more details, code, screenshots, videos, etc. below.
Hello! I'm not sure I completely understand. You have a connected account and you want to get the Tax IDs it has? What is "kvk"?
Yes, so for example I have a company called Gibbon Software and I had to fill in this information which is required in the Netherlands. Then I connected this company to our platform using Connect. Now the platform needs the KVK and VAT number for their own tax registers, so I was wondering if the platform can get these details through the API
You can list that connected account's Tax IDs using this API: https://docs.stripe.com/api/tax_ids/list
You need to make that request on the connected account: https://docs.stripe.com/connect/authentication
It returns
{
"object": "list",
"data": [],
"has_more": false,
"url": "/v1/tax_ids"
}
That indicates there are no Tax IDs on that Account.
Can you give me the request ID so I can take a look? Here's how you can find a request ID: https://support.stripe.com/questions/finding-the-id-for-an-api-request
req_vo8tE2wDoR7Y3d
You made that request on your own account, not on a connected account.
If you want to make that request on a connected account you need to specify the account ID in the Stripe-Account header per the documentation I linked above.
I added the header Stripe-Account: acct_1PIrRdIspn7wOnfu right?
Yep, that one was made on the connected account.
Did you get a Tax ID in the response?
Nope, same response
{
"object": "list",
"data": [],
"has_more": false,
"url": "/v1/tax_ids"
}
Are you certain there's a Tax ID object on that account?
Well I'm certain there is a KVK and VAT number on the account, like seen in the image above. I do not know how that relates to a Tax ID object
Oh... you mean you provided those details during account onboarding?
Yes
You, as the platform, can't access those details on a Standard connected account.
Ah and are there ways that we could? With non-standard accounts, request or something else?
Let's back up a bit. Can you tell me more about what you're trying to build?
Yes ofcouse. We have an event platform and event organisers can sell their tickets on our platform. We charge a 10% fee for that and do this with Stripe Connect. However, we need to invoice these organisers for all of the fees we collected, so we need their invoicing information. Since they already put in all this information in Stripe, I thought it would be good to gather that information instead of asking them twice.
Gotcha. What I recommend is that you ask for the tax ID first, store it in your system, then when you create the connected account via the API you can supply the tax ID so they don't have to fill it in again during onboarding: https://docs.stripe.com/api/accounts/create#create_account-company-tax_id
Ah I see
So there is no way to collect and retrieve the information from within the Stripe platform?
Correct.
Alright, thanks!