so the stripe dashboard should show tell you the reason each charge was created
like if it was a subscription or if you called the create charge api, et
lokanath
it was a recurring subscription
mattwc
both?
lokanath
yes
mattwc
are each linked to a different invoice?
desforets
mattwc: oh ok, thank you. so I do have to create the order, then update it, then pay it? all in three separate calls? Also, the docs state "This request accepts only the metadata, and status as arguments". Is that somewhat incorrect then?
mattwc
desforets: yeah that looks a little incorrect
since you could also pass like the shipping tracking number
desforets
ok, fair enough. lastly, will the default shipping method be the first listed on my stripe dashboard? aka Basic in my case? Will Stripe know to set shipping to free if the dollar value is above the amount set on dashboard to qualify for free shipping?
Likewise, could I maybe omit a step if I simply had one flat rate for shipping. Anything over that amount would be free and I wouldn't have to edit my code at this stage.
mattwc
I don't know off the top of my head, I would test it in test mode or email support
desforets
ok, thanks muchly!
mattwc
orders is such a specialized product with a particular use case that personally I recommend just doing it yourself
desforets
you mean just creating the charge?
lokanath
same invoice numbers are linked to both card ids..
@mattwc => In which cases this can happen ..
mattwc
desforets: yeah and keeping track of the order in your own database
lokanath: that seems a little impossible, a single invoice can't have 2 successful charges
lokanath
I am seeing the same .. same invoice number linked to 2 cards
confused joined the channel
mattwc
lokanath: I'd recommend emailing support then with the invoice and charge ids so they can investigate
desforets
right, ok. yeah it's a small ecom site. currently not running a DB, just want to process payments and pass order off to the logistics company. Orders seemed to pertain to the task at hand but maybe it's a little surplus. I mostly was looking to leverage the automatic invoicing in Stripe :D
mattwc
lokanath: without seeing what you're seeing though that doesn't sound like something that is possible
desforets
and by invoicing I mean receipt generation, which will look better with products, shipping and taxes listed to match the charges.
anyway thanks for your help
mattwc
cheers
lokanath
hmmm .. I will investigate more from my end .. and will contact support if needed thanks for your support.. mattwc
confused has quit
confused joined the channel
mattwc
basically an invoice can't have 2 successful charges so I have no idea what you're seeing in the control panel
lokanath
its ok thanks mattwc.. i once again crosscheck from my end and i will contact to support
arosen has quit
desforets
mattwc: so it does default to the first listed shipping method and when the amount is above the free shipping amount it uses that! v good :)
arosen joined the channel
dionysus69 joined the channel
desforets has quit
orbyt_ has quit
lokanath
Hi mattwc.. all invoices are linked to one card only.. No issue everything is clear .. thanks for your help ..
confused has quit
stripe501 joined the channel
stripe501
help
ta_ has quit
harryp has quit
chasepub joined the channel
mattwc
stripe501: what's up?
lokanath_ joined the channel
lokanath has quit
arosen has quit
timebox joined the channel
timebox has quit
Xionkana has quit
arnotixe joined the channel
mmack joined the channel
confused joined the channel
confused has quit
ta_ joined the channel
lokanath_ has quit
Xionkana joined the channel
chrisrosillo joined the channel
Xionkana has quit
vbwyrde has quit
arnotixe has quit
timebox joined the channel
circ-user-futli joined the channel
timebox has quit
rogue_koder has quit
agitator has quit
Xionkana joined the channel
arnotixe joined the channel
mmack has quit
agitator joined the channel
Xionkana has quit
mmack joined the channel
arnotixe has quit
mmack has quit
Markus__ joined the channel
Markus__
Hey there!
I struggle with finding information for how to create a stripe-token from a creditcard JS-Object such as {cardnumber: 1234123412341234, cvc: 123, expiryDate: '05/18'}
stripes joined the channel
Hello stripes!
mmack joined the channel
I struggle with finding information for how to create a stripe-token from a creditcard JS-Object such as {cardnumber: 1234123412341234, cvc: 123, expiryDate: '05/18'}. Any ideas?
wook_ has quit
Anil joined the channel
Archelaus has quit
Archelaus joined the channel
Anil has quit
Markus__ has quit
Volpy joined the channel
Volpy
hi everyone
does someone already build a guarantee system or service with stripe ?
larafale joined the channel
amisca joined the channel
amisca waves hello
amisca
Is there anyone who can give me a hand / explain a few things?
Night_ has quit
arnotixe joined the channel
Night_ joined the channel
larafale has quit
larafale joined the channel
Volpy has quit
mike_ joined the channel
mike_
hi
Is there a technical difference between using stripe.createSource() or stripe.createToken() with Element ?
mike_ is now known as Guest21806
Guest21806
we made a migration from token to source and banks seems to refuse payment more often since...
larafale has quit
mmack has quit
orlondow
Hi Guest21806 you'd want to check with our support so they can dig in your logs and payments to see what happening https://support.stripe.com/email
but to answer your question there should not be a difference
Hi amisca I'm around for a bit, what your question?
confused joined the channel
confused has quit
Guest21806
thank you @orlondow
larafale joined the channel
mmack joined the channel
Xionkana joined the channel
Xionkana has quit
arnotixe has quit
arnotixe joined the channel
broge joined the channel
Yuval_ joined the channel
broge
If you timeout on stripe after using a Http request to do charges - and you timeout, there is a possibility for your transaction to be processed anyway without you knowing. Anyone know a way around this?
stripe501 has quit
Yuval_
Hello there, Elements question here: Can I have a card element auto-filled? Like with Checkout.js? Or do customers must fill in credit card details each purchase?
wook_ joined the channel
mmack has quit
Xionkana joined the channel
amisca
hi orlondow, sorry I was concentrated with the stripe integration
The CEO is a bit worried about a couple of things about the stripe integration
more exactly about the security
Xionkana has quit
I read about the security mesures in stripe and ussing the SSL certificates, but how dificult can it be that that a 3rd party can obtain my client's data (credit card number and CVV) ?
like a man in the middle for example
chasepub has quit
and in case that someone gets this data who's fault is it?
my company, bacause is where they input this info?
the users? bacause the have an unsafe connection to the internet?
or stripe's ?
Yuval_ has quit
psmvac
@broge: if there is a timeout on the client side, there is a possibility that the transaction may have succeeded on the server side. You could safely retry the transaction via an Idempotency request (https://stripe.com/docs/api/php#idempotent_requ...) which will return the exact outcome of the previous attempt.
thanks @psmvac I'll give that a go, and see if that resolves me issue
rado__ joined the channel
rado__
Is there a way of catching errors such as insufficient funds on a card? I am using your APP SDK but the APP merely crashes if there is an error, no error-message is displayed?