#wiser_connect-integration
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/1420805342320787576
๐ Have more to share? Add more details, code, screenshots, videos, etc. below.
๐ just wrapping up a few other threads. Looking over your question ๐
These docs should outline the process
https://docs.stripe.com/connect/collect-then-transfer-guide#payouts
If there is any part that is unclear or you need clarification on let me know ๐
For now things are clear, if there is anything I will be back to you
I have one more question: how does the system determine that a payment has been initiated by the buyer? For example, do we have an API where we pass specific parameters or a transaction type indicating that this payment was initiated by the buyer for a particular project, and that the corresponding seller should receive the amount against it?
We have the transfer_data parameter that is used to indicate the account the funds will be sent upon completion of the transaction.
will you please provide me the link to that specific API ?
Do you know if you will be using a hosted form, embedded form or a customer flow using our components?
We will be using embedded form
@velvet bay I'm sorry I read the thread but I don't really understand the ask. As the developer/Connect platform you are the one initiating the payment attempt by creating a PaymentIntent in that case or a Checkout Session
wiser_connect-integration
I was asking another query, that payout is clear to me , My query is when I am depositing the money as a buyer for any specific project how system determine the procedure of buyer and seller ?
yeah sorry I have no idea what that could mean
I mean , do we need to pass such type or status in API to differentiate the buyer and seller requests ?
Are you the developer writing the integration? This seems super high level
In our API the buyer is the person paying for a service, they are represented as a Customer object with a PaymentMethod for their card details for example.
The seller is the person offering a service and receiving the money. They are represented as an Account object in our API, we usually call this the "connected account"
As the Connect platform facilitating the payment, you would be the one building the whole logic/code and for example you would create a PaymentIntent for $150 USD and charge John Doe's card by passing customer: 'cus_123' and payment_method: 'pm_ABC' assuming you saved those before, adn send those to the connected account acct_123 in transfer_data
Sounds good , Thank you