#nsad_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.
đ 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/1240107939553873940
đ Have more to share? Add more details, code, screenshots, videos, etc. below.
hello! gimme a couple of minutes to take a look
hello, no problem
Since you're using destination charges, I would recommend checking that https://docs.stripe.com/api/accounts/object#account_object-capabilities-transfers is active on the connected account
Complete reference documentation for the Stripe API. Includes code snippets and examples for our Python, Java, PHP, Node.js, Go, Ruby, and .NET libraries.
ok, another question, when i use accountlink to create information to account
after i go to next step i cant back to change informations
its possible?
no, it's a unfortunate limitation but you can't click / go back to edit information. Depending on the situation, you may have the opportunity to review / edit certain information at the end. If the connected account user really needs to edit the info, they should be able to do so via the Express Dashboard after they complete onboarding
ah ok
so back in object capabilities
for default after create account, this object is empty
after complete everything create a transfer inside capabilites, right?
when you create the account, did you request for the transfer capability?
account = stripe.Account.create(type="express", country="BR", email=request.user.email)
no
its better i use custom to fill just required fields?
i'm not sure i understand what you mean by use custom to fill just required fields
that's up to you
account = stripe.Account.create(
country="BR",
type="custom",
capabilities={"card_payments": {"requested": True}, "transfers": {"requested": True}},
)
now is just verify when transfer is active right?
for destination payments, yes