anyone here that can help with query? first time im using this
hello matt, can i accept payment for art lessons i provide?
mattwc
sure you can
stripepp
planning on creating wordpress site, stripe linked to it.
ok thats great
impressed by stripe, alot better than paypal
great support. ty
Gsham joined the channel
srn joined the channel
srn
hello
stripepp has quit
beamercola joined the channel
beamercola
using Connect Express, i need to add customers now. Is there a URL to do that, or do I have to do it via the API?
mfp has quit
rainer_ has quit
beamercola has quit
hanoii joined the channel
tr12 joined the channel
tr12 has quit
nickers has quit
mrjones_ has quit
ram_ has quit
kies has quit
spacecadetbrown joined the channel
spacecadetbrown has quit
eric_lagergren joined the channel
kies joined the channel
tr12 joined the channel
Ben_____ joined the channel
Ben_____
Hi Stripe
Anyone there?
tr12
Ben_____: hey
Ben_____
Hi
I have a question for you regarding Stripe. Can you help?
agniz joined the channel
agniz
I am embedding a custom checkout form and I need a help
tr12
Ben_____ & agniz: sure, ask away
agniz
what should I use for /your-server-side-code
tr12
agniz: the idea is that you'd write some url handler on your server which accepts the token and whatever other parameters your form includes, and actually creates the charge
it's a specific url on your website, that you need to write the code to define
Ben_____
So I run a SaaS product with hundreds of monthly recurring CC transactions. I would like to reduce the number of credit card fails due to expiring cards. Our current provider does not have any sort of solution for this. I would like to know if Stripe has some way for us to run a cron job and send a canned email (probably from our system) to the client informing them that their CC will expire in, say, 14 days. Does Stripe help out in
tr12
agniz: once you've done that, you'd use whatever you decide to name that url
agniz
go it @tr12
tr12
Ben_____: you can loop over all customers to find the customers with a card that's expiring soon, since the expiration date is exposed as a property of the card
there isn't anything more specialized than that, if that's what you mean
agniz
so the publishable key must be in the form and the secret one must be that code url?
tr12
Ben_____: though there are a couple of providers that build services like that (offhand, stunning is one such service)
(ie: and integrate with stripe to make this easy)
Ben_____
Great thanks. So when you say 'loop over' - this is a script we'd run as a daily cron? That type of thing? I take it that info we are searching is held on your servers, not ours?
tr12
agniz: your secret key should only ever be on your server - if it's part of the url, then it's no longer secret
Ben_____
And 'Stunning' this is a plugin that integrates with Stripe?
tr12
Ben_____: yeah, you'd run the script locally. stripe has a copy of the card expiration date, but there's nothing stopping you from retaining a copy of that info in your local db
Ben_____
Oh you answered that!
tr12
that info isn't in pci scope, so there's no particular restriction there
hanoii has quit
Ben_____
Ah got you. Great. OK that sounds good.
tr12
caching that info locally has some upsides, in that you can define the indexes you want on your db to optimize for a particular pattern of access
so you can run that query quickly, vs having to list through all customers via the api
Ben_____
Yup true true
tr12
(stripe has to be fairly opinionated about what access patterns it does support, because you just can't support everything)
Ben_____
So in your opinion, whats the best option here: Use a plugin like Stunning, or do a locally stored (and DB optimised) look up?
agniz
thank you @tr12
tr12
Ben_____: I've never used stunning, so I just have second hand info
my general instinct is to try something off the shelf before resorting to building something in-house
Ben_____
Just looking at it now. They seem to know Stripe pretty well.
Agreed. Ok thank you for your help.
tr12
np!
agniz: np!
Ben_____: I mean, if I can outsource wringing more dollars out of each subscription to somebody else (who's already made a big upfront investment), great - I can work on more interesting problems :P
agniz has quit
Ben_____ has quit
theMagnumOrange joined the channel
Gsham joined the channel
soulfoodz joined the channel
Flexiroam joined the channel
Flexiroam
Hello stripe
Good Morning.
Need some help regarding Payouts
tr12 has quit
soulfoodz
I have a user that is having every pmt attempt fail as Declined, regardless of what card he uses.
Hi, When letting know the user why the transaction was declined should I use stripeCode or declineCode? As far as I understand stripeCode is for the site admin to know the specific reason and declineCode is for the user
As in the case of 'lost_card' and 'stolen_card'
srn has quit
spacecadetbrown joined the channel
spacecadetbrown has quit
abilicom joined the channel
kies has quit
aishwarya joined the channel
aishwarya
Hi
Have some clarification on stripe API's
soulfoodz
@aishwarya can you help?
aishwarya
helpp!!
Is this stripe support team ?
soulfoodz
oh, no, I'm just using the Stripe api
I thought you could help me :)
aishwarya
same here...I was also trying to use stripe api
Zachary_DuBois has quit
soulfoodz has quit
Zachary_DuBois joined the channel
Vikash joined the channel
stripe606
aishwarya, if you have a question I can try and help :)
Vikash
We are a startup mobile ticket marketplace in development, as you already know, and are implementing Stripe. I noticed that Stripe has implemented recent price changes that charge $2.00 per “active” managed account in a given month with “active” being defined as receiving one payment in that month. My understanding is that paying users are not considered “active” in that month and the $2.00 fee is not assessed. The thin
The thing is the margins on our platform are not high. One of the ways we are hoping to improve the ticket industry is by charging a flat fee per ticket, rather than a percentage of ticket price. Considering only those Americans that go to live-events, the average American goes to 5.4 events a year. This means that a significant majority of our users receiving payments will only receive one payment per month. That combined with our a
Sunny joined the channel
Sunny
Hello
I am facing an issue realted to payment.
Uncaught exception 'Stripe\Error\Permission' with message 'Stripe no longer supports API requests made with TLS 1.0. Please initiate HTTPS connections with TLS 1.2 or later. You can learn more about this at https://stripe.com/blog/upgrading-tls.
It works on my local machine.
But when I put this on my test server it throws this error.
stripe_genius joined the channel
stripe_genius
Hey! I'm wondering how it's possible to create subscriptions where the funds go into the managed account? So this way I can subscribe a customer to that subscription? I tried: https://stripe.com/docs/connect/subscriptions#c... But get 'No such customer:' when I run it?