Mowee_ : we don't support payouts to credit cards. Only US-based debit cards are supported. But yes you can make "normal" payouts to debit cards
Naschpitz has quit
Naschpitz joined the channel
stripe050 : hello! Sure what do you need?
of course!
stripe050 : I am following I was just waiting for the rest :)
diegoaguilar joined the channel
to test you just create a charge in Test mode and listen for the webhook
you can totally see the Connect dashboard. You just have to create a separate account with a different login/password so that when you connect you can log into the dashboard and view it (for example in a different browser)
diegoaguilar
Hello, is it possible to generate a 0 dollars charge using Stripe's JS component?
diegoaguilar : no, Stripe.js is used to collect card details securely. It does not create a charge. And we don't support $0 charges
yes all of this is correct. You don't need to store any API keys. You always should use your API key and the connected account id (acct_XXXXXX) in the header https://stripe.com/docs/connect/authentication#...
then it all sounds perfect
you don't really *have* to implement webhook since you create the charge, it's really up to you to decide if you want to do webhooks and if so to listen to all relevant events. So for example all `charge.*` would be useful to listen too
to*
You would just create a test charge and confirm you get the event to your endpoint, it's as simple as that. You can use ngrok https://ngrok.com if you want to receive those locally
You totally can, I explained how you can do that earlier. And you don't really need to. You just need to add an endpoint to *your platform* and then you will see events coming in
a charge would be done by your code server-side though
not really, I mean there are metrics for all charges, but those are just one-time charges, so you would report all of them the same way based on your volume on the landing page in the dashboar
dashboard*
yep just store this information in your db I would say
sounds good!
omenar joined the channel
Seaweedseal joined the channel
spooky_d16 joined the channel
ta_ has quit
StanislasP has quit
stripe050 : description of what?
rajesh_ has quit
Xionkana joined the channel
when you create a charge you get a charge object if it succeeds or an error if not. So there's no need for anything else. But you can always look at `paid` and `status`
measwel joined the channel
the card object has a `country` property for this yes
measwel1 joined the channel
measwel has quit
Xionkana has quit
same it's on the card token too since the card token describes the card too!
measwel1 has quit
edcragg17 joined the channel
edcragg17 has quit
vince164 joined the channel
stripe050 : you don't need to create a card object but you do need to create a *Token* to know yes
koopajah has quit
koopajah joined the channel
stripe050 : sorry I crashed let me know if you had another question
stripe050 has quit
stripe827 joined the channel
Amplaffy joined the channel
Amplaffy : what do you need help with specifically?
Amplaffy1 : even though it uses PHP it's the same exact logic no matter which language you use. And data-amount is optional, you can just remove it if you don't want to display an amount
SophieAG joined the channel
Amplaffy1 has quit
Amplaffy1 joined the channel
[10:43:02] <@koopajah>Amplaffy1 : even though it uses PHP it's the same exact logic no matter which language you use. And data-amount is optional, you can just remove it if you don't want to display an amount
SophieAG has quit
yes you can build things any way you like, there are numerous approaches to this too
no all of this is something you would implement yourself as the developer
usually we recommend just causing those events in your own account but really each event describes the resource they are associated with
sure but you can trigger all of this in Test mode in your account
you don't really need to receive those per se, you can view events in the dashboard
Naschpitz has quit
stripe827 has quit
exhibiton joined the channel
exhibiton
Is there a smart way to injecting CONNECTED_STRIPE_ACCOUNT_IDs to the request headers with Stripe Ruby library? Need to do it apparently to send payouts correctly from connect accounts own balance iODnstead of platform accounts.
PhamHanh do you have any indication from your customers why they might be disputing? Do you suspect fraud or simple confusion about the pricing/product/service you are offering? Unfortunately this channel is largely for coding help, but that's where i might start trying to understand the root reason customers are filing.
leolux you'd need to handle that on your side, stripe places no limitation there
perhaps you could have a db table with your own id, the stripe customer id and email address, before you create a new customer check there. provide your users with a membership management area where they can login, update their account, etc