#augustin-de-menthiere_best-practices
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/1348742798144176219
๐ Have more to share? Add more details, code, screenshots, videos, etc. below.
Hello
Not sure what you mean by that. Can you elaborate?
Is coda a third-party platform? If so, you'd want to check their documentation around best practices.
๐ stepping in here
That looks to be a third party integration
You would need to reach out to that third party about this.
We can only help with questions about integrating our API directly.
They're saying that I have to ask you guys about it
Yes its a kind of Notion Like
If you need help with your account then you'll need to reach out to our Support team via https://support.stripe.com/contact/login
This isn't something we can help with there. We can only answer technical questions about our API in this channel.
@modest viper makes sense
But anyway, that is the same issue than with the API, as it's using stripe API
This is my issue : how can you link a customer, to a bill , to a payment link , and then check the payemnt has been done for this customer ?
You can pass in client_reference_id when you create your Payment Link which then will be passed through to the Checkout Session to handle reconciliation. We show this here: https://docs.stripe.com/payment-links/url-parameters#streamline-reconciliation-with-a-url-parameter
The recommended way to handle fulfillment is via Webhooks: https://docs.stripe.com/checkout/fulfillment
I don't understand how to match a payment done with a customer
I am not a coder ... ๐
You check the client_reference_id on the Checkout Session: https://docs.stripe.com/api/checkout/sessions/object#checkout_session_object-client_reference_id
Yeah sorry then I can't help you.
You need to hire a developer here to help you.
ok got it , whith the checkout session
here I can t find it as the client paid va a generic payment link, with no client id attached
customer = guest
so best practice is
- create product
- create Client
- create payment link WITH customer ID
4.check checkuot session for customer ID
right ?
You can't create Payment Links with Customer IDs, Payment Links are designed for one-to-many integrations.
Payment Links create Checkout Sessions
The only way to tie a customer to a Checkout Session generated from a Payment Link is to use the client_reference_id as I stated above.
so best practice is
- create product
- create Client
3 .create checkout session with customer ID
4.check checkuot session for customer ID
?
Yep if you are going to create Checkout Sessions directly then that is recommended.