Hello all, has anyone come across an error "Invalid non-negative integer" when customers pay Invoices through Stripe?
Rikard has quit
Akashic_ has quit
stripe950
@kaylined thank you
tr12
Guest62658: if you look at the logged request in the stripe dashboard, what's logged there as the amount parameter?
uilnivek has quit
what that error is saying is that the number needs to be a number between 0 and infinity, and it can't have a fractional part
njbair has quit
njbair joined the channel
stripe950 has quit
wiherek joined the channel
wiherek
hey, got an issue with payment request API – i get the yellow box saying browser does not support / no provided card, though I do have a card provided, and I actually saw the button – but only once! This is Chrome 62. Anyone familiar with such a problem?
payment joined the channel
payment
Hello everyone!
tr12 are you still here?
I have an item and it's $45. I need to add 6.875% sales tax and then 2.9% tax for stripe and then the 0.30 processing fee from stripe. How could I do this?
tr12: Thanks, I ran through it and I ended up with $45.11 so I got $0.11 more than the $45 I needed. Thanks!
tr12: I used (45 + 0.30) / (1 - 0.029 - 0.06875) = $50.21
tr12: I just found out that the equation wouldn't work with 100% sales tax. It would come out to a negative number. How could I fix this?
(45 + 0.30) / (1 - 0.029 - 1)
kaylined
Is there ever a scenario where there would be 100% tax?
Seems like a non-problem to me.
njbair has quit
rgbiv has quit
payment
kaylined: Alright, thanks
njbair joined the channel
mfp has quit
njbair has quit
Guest62658 has quit
tr12
I mean, it's correct that it yields a negative result with $100 tax
because between NJ and Stripe, you'd be paying 102.9% of the charge in either sales tax or fees
njbair joined the channel
echarlie joined the channel
echarlie
is there any way to require your stripe team members to use 2fa?
tr12
there is not, unfortunately
kaylined
Not through Stripe, but there are ways to require your team members to use 2FA.
eric_lagergren joined the channel
rburak joined the channel
rburak
I'm trying to tokenize user card data to be saved on their customer objects and want to create a custom input form for their card data. Is it possible to do this without Elements and just use Stripe.js to perform the tokenization on raw card data?