#dusk-_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.
- dusk-_docs, 20 hours ago, 22 messages
- dusk_custom-apionboarding, 22 hours ago, 28 messages
- dusk_connect-onboarding, 1 day ago, 63 messages
- dusk-_docs, 6 days ago, 71 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/1242860289146359959
๐ Have more to share? Add more details, code, screenshots, videos, etc. below.
Hi! ๐
Hello, thanks for the info. Checking in to this error and will get back to you
So it looks like we only accept the additional_tos_acceptances param if you specify that this person is a legal. Looking at the API ref for that param it actually looks like it is specifically for when the person is the legal guardian of the account's representative.
https://docs.stripe.com/api/persons/create#create_person-relationship-legal_guardian
https://docs.stripe.com/api/persons/create#create_person-additional_tos_acceptances
I'm not that familiar with what that actually means beyond the API params though. Can you tell me a bit about what you are trying to do here with this call?
We're basically a neobank that serves non profits and we are making Stripe Connect accounts for them (and thus making a Stripe Person as well to enable payments). This person would be the representative of the non profit instituition that is our customer
Seems like I just need to remove the additional_tos_acceptances param. I was accepting the tos at both the account level as well as person level
Looks like it worked. Thank you @fiery burrow
How would I go about fetching all the donations made through a particular Payment Link?
Hello! I'm taking over and catching up...
You can list Checkout Sessions by Payment Link: https://docs.stripe.com/api/checkout/sessions/list#list_checkout_sessions-payment_link
Got it, thank you