#discodanne_api
1 messages ยท Page 1 of 1 (latest)
๐ 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/1342154615810166795
๐ Have more to share? Add more details, code, screenshots, videos, etc. below.
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.
- discodanne_api, 16 minutes ago, 5 messages
Hello
Hi
Guest Customers don't exist in the API
They are only a Dashboard association of Charge's that don't have an affiliated Customer.
What are you trying to do here?
We have a bookkeeping integration, we bookkeep from Stripe to a software called Fortnox. We have helpt alot of customers in the past and its the first time I see the guest customers.
We need a customer name or email to bookkeep the transaction
I think that they use Checkout for some ad hoc payments. But most goes trough another provider.
This is one of the payment i have been looking at
pi_3QeCcKQaqY2mdbpg0n2hRpAv
And here is another one pi_3QebGBQaqY2mdbpg5MQXSezQ
No that looks like PaymentIntents are being created directly by the platform, not using Stripe Checkout. You can see in the creation request (https://dashboard.stripe.com/logs/req_BlEwCcP71HyXcq) that no Customer is passed in the POST body thus there will be a Guest Customer associated instead of a Customer.
Are you the developer for the platform here?
I only have API access
But I had a meeting with the owner and she showed me the dashboard, where i noticed the guest customers.
Gotcha, yeah so you need to create a Customer (https://docs.stripe.com/api/customers/create) and then pass that to the PaymentIntent on creation: https://docs.stripe.com/api/payment_intents/create#create_payment_intent-customer
Looks like you are using Laravel so you'll likely need to find their corresponding methods for that.
Yeah I am not involved with the payments that is done by a platform called Bookspot.
I am just trying to bookkeep it, but we often run into problems with the platforms not sending enough data to Stripe, but this is the first time none of the customer/billing_details are not populated
Ah gotcha you are the Connected Account here.
Okay yeah you need to talk to the platform about this
Since they control the integration.
So the conclusion is that Guest Customer only exist in the Dashboard an not the API.
To get customer data the platform need to pass it along with the payment data?
Yep
Okey thanks for the help ๐