#PSN-connect
1 messages · Page 1 of 1 (latest)
Hi, could you please give me more context on your question?
Yea. I’m using stripe connect for my application
The app has services which are provided by users itself.
So basically a user can be both consumers and providers
So user will be adding money to their wallet before using a service.
Basically the connect account is their wallet.
@twin reef
I'm not sure if I follow you, did you encounter a problem in making API call? are you making direct/destination charges or separate charge and transfer?
I’m not talking about charges here. I’m asking about topup for self connect account.
@twin reef
Adding money to his own connect account (wallet) for availing services.
Are you referring to this https://stripe.com/docs/connect/top-ups ? i.e., add funds from a bank account?
Yes
I want to know if I can implement this for every user for adding balance to their own connect account.
@twin reef
You can learn more about the requirements here https://stripe.com/docs/connect/top-ups#requirements
stripe.Topup.create(
amount=2000,
currency="usd",
transfer_data={
'destination': '{{account_id}}',
)
Is this possible?
@twin reef
Hi @zealous briar I think the most effective way is to trying out the API yourself, and you can also come back to Discord if you encounter any problems.
Ok
@twin reef I tried this api. This is for adding platform balance right? Can it be used by our users for adding balance to their wallet?
Wallet is something we maintain in our application.
So that users don’t need to type their card details everytime they use a service from other users.
Did you get it? @twin reef
what's the response you get from the API? can you give me the request ID?
@zealous briar you can only top up your platform balance yes. You can transfer the funds from there to a specific connected account, instead of topping up the connected account itself.
or often what people do is you on your platform you have a Customer which in your system, you say is the same person as the account holder and have the account holder add their card to it. Then you charge the customer (in e.g. a Destination charge) to "top up" the connected account, that's quite common.
Will there be any charges?
@zealous briar can you elaborate?
like do you mean are there Stripe fees to pay?
If I use destination charge for the topup scenario, will there be any fee which the customer has to pay?
Yea