#wiser_connect-integration

1 messages ยท Page 1 of 1 (latest)

gilded canyonBOT
#

๐Ÿ‘‹ 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.

weary minnow
#

๐Ÿ‘‹ just wrapping up a few other threads. Looking over your question ๐Ÿ™‚

weary minnow
#

If there is any part that is unclear or you need clarification on let me know ๐Ÿ™‚

velvet bay
#

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?

weary minnow
#

We have the transfer_data parameter that is used to indicate the account the funds will be sent upon completion of the transaction.

velvet bay
#

will you please provide me the link to that specific API ?

weary minnow
#

Do you know if you will be using a hosted form, embedded form or a customer flow using our components?

velvet bay
#

We will be using embedded form

gilded canyonBOT
lost salmon
#

@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

velvet bay
#

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 ?

lost salmon
#

yeah sorry I have no idea what that could mean

velvet bay
#

I mean , do we need to pass such type or status in API to differentiate the buyer and seller requests ?

lost salmon
#

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

velvet bay
#

Sounds good , Thank you