arosen: yeah a few things, the email() method wasn't defined, the email address needs to be pulled from the input on the form rather than from the token, the $.post is a jQuery function so you'll want to include that lib if using that
wook_ has quit
arosen
ah yea, sorry about that. i have those things in my code
artrixs
dqsf: Apply pay was working on my site for some time and suddenly it stopped working ... don't know what the problem is
arosen
why is the email field there needed?
artrixs
It is a wordpress with with woocommerce plugin for stripe on it
eacameron joined the channel
dqsf
arosen: elements does not collect an email
arosen
and email is required i guess?
dqsf
no, its not strictly necessary , if you want you can remove it
though its good practice to include it
artrixs: I'd chat with woo commerce about this first and email into support if you're not able to resolve
stripe687 joined the channel
shawn_ joined the channel
artrixs
@dqsf: done this and created a ticket for 2 weeks now
you're trying to grab email: req.body.stripeEmail,
source: req.body.stripeToken
stripe687
Hi can we add funds to our stripe balance from our bank account in the dashboard? We need to transfer some funds to our connected accounts.
dqsf
so adjust those accordingly req.body.email, req.body.token
artrixs: without more specifics its hard to troubleshoot, do you see any errors in your stripe account logs or when attempting to check out with apple pay
dqsf: okay i updated that but i still don't see the card number showing up in the stripe dashboard
phpjson has quit
do i need to charge the user for the card to show up there?
dqsf
arosen: so you'll never see the raw card number, only the token and some related card info like the last4. your code is only creating a customer. if you navigate to one of the customers in your dash do they have a card attached?
so you're creating a customer, the next step is charging that customer
stripe687 has quit
but i think you're well on your way
okay, i must retire for the night! adieu!
arosen
night
dqsf has quit
joshontheweb has quit
T1m0thy joined the channel
saurabhjha has quit
mindpattern joined the channel
liz joined the channel
liz is now known as Guest85958
stripe519 has quit
bradchoate has quit
Guest85958
Hello. How do I send out money to another Stripe user? I do not have a business.
mindpattern has quit
railswebdev joined the channel
Guest85958 has quit
Duelist has quit
axyjo has quit
githubmgw1 has quit
nikola joined the channel
axyjo joined the channel
axyjo has quit
axyjo joined the channel
saurabhjha joined the channel
saurabhjha has quit
joshontheweb joined the channel
snax joined the channel
snax has quit
railswebdev has quit
railswebdev joined the channel
eric_lagergren has quit
divine joined the channel
divine
hello guys, happy to be here
EasyCo joined the channel
IBM000 joined the channel
Iridesce joined the channel
IBM000
Hi Stripe engineers, what is the quickest way to query for events to determine which customers are delinquent? Need to know which customers' recurring charges are failing. Will the API call at https://stripe.com/docs/api#list_customers take any param that will return only delinquent customers?
ftknox joined the channel
divine has quit
something like customerParams.put("delinquent": true) ?
mattwc
IBM000: generally you should just be listening for the webhook for that
IBM000
right, but Webhooks are not an option for us unfortunately
joshontheweb has quit
mattwc
You can use the list subscription api but the real solution is to make webhooks work (I'd be curious why that wouldn't work) since querying the stripe api can be taxing
ftknox has quit
IBM000
Webhooks require externally visible URI for the POST call to be made and our deployments are mostly for within a secured netork and the overhead of setting up something externally visible and then hooking up the data to the secured network did not get much traction
mattwc
Then how do customers provide their card data? Or is this more of a call center with expanded pci scope set up?
snax joined the channel
IBM000
That will depend on the deployment.. this is for a solution that can be deployed by many customers(platform hosts) that will buy our solution. Even if they agreed for a webhook solution, the actual data would have to be obtained by making a direct query to Stripe as a best practice (but then we would know what we are querying)
shawn joined the channel
shawn is now known as Guest82445
mattwc
(Stripe now signs webhooks for verification)
IBM000
I will take a look at the list subscription api and see if it works for such queries
OK that is nice to know (Stripe now signs webhooks for verification)
Thanks for your answers
railswebdev joined the channel
Do the subscriptions get cancelled after the recurring charges fail? In the subscriptions details, what should I look for to know if the customer is delinquent?
snax has quit
Guest82445 has quit
mattwc
it would depend on your retry settings
the default is that they go past_due, retry 3 times and then cancel
artrixs has quit
joshontheweb joined the channel
vinnychase_ joined the channel
vinnychase_
hello! we are in the implementation phase of stripe and we would like to ask a few questions