oh beaver tails look good and I've never heard of them
tr12
I at one point had to explain to somebody that they weren't literally beaver tails
they were pretty horrified at first
tictacjoe has quit
rubyonrailed joined the channel
rubyonrailed has quit
tictacjoe joined the channel
LanceOmni
poutine is awesome...
nemothekid joined the channel
stpaulti_ has quit
tictacjoe has quit
nemothekid joined the channel
nemothekid has quit
thinkxl joined the channel
dpg_ has quit
nemothekid joined the channel
sr2016_ has left the channel
sr2016_ joined the channel
thinkxl has quit
LanceOmni has left the channel
stripeon has left the channel
nemothekid has quit
s3shs joined the channel
nemothekid joined the channel
cdbattags joined the channel
fels joined the channel
nemothekid has quit
tryrany joined the channel
cdbattags has quit
nemothekid joined the channel
km2 has quit
fels has quit
Reh joined the channel
swengin joined the channel
swengin
Hi can I get card type using stripe api?
markin
swengin: the card type would be part of the card object which is included in the token as well as the charge, so yes
swengin
ok thank you
Reh has quit
varun_
Hi guys
how do i get around this error
You cannot activate a test-only account. In order to activate, make sure your account is created under livemode
markin
varun_: you created that account using your test api key, you have to create the account using a live api key
varun_
ah ok
and then i can go back to test api key for donig payments>
?
as in test payments
markin
yes
varun_
markin: another question. Can i do test payments in live env?
markin
no that would be bad, you use your live api key for live, and your test api key for test
varun_
ok thanks
so connected accounts must be created using live api keys?
bit of a gotcha but its ok :)
markin
if you want to be able to process live payments with them yes
varun_
not a problem thanks
markin
ideally you just use test for test mode and then you switch everything to live when you're ready for production
varun_
cheers
tryrany
about the tax advise in the new package, how do I go about getting that part alone? I got a company and a bank account and stripe, can I hire your accountants for tax advise, or is it like I will have to take the entire package and form a new company etc?
nemothekid joined the channel
markin
tryrany: package? Stripe does not offer tax advise
Oh you mean Atlas?
so tax advice with Atlas is handled through PwC
"That said, we’re not providing tax and legal advice. Stripe Atlas users have access to a legal guide prepared by Orrick, a tax guide prepared by PwC, and a free consultation call with an expert from PwC. PwC and Orrick will not provide tailored tax advice unless you engage them to represent you directly as a client."
I was wondering if I could have some help, or if someone could point me in the right direction. I've been asked by my boss to set up Checkout on our website because I'm the closest thing to an IT girl that they have, but I have no idea what I'm really doing?
hswolff has quit
markin
Dimmerswitch: do you have any knowledge with PHP or some server side development?
Dimmerswitch
Markin: I'm afraid not. The most I can do is dabble in HTML. I've been watching videos and tutorials and the like, and I understand them well enough, but I'm still confused.
markin
Dimmerswitch: yeah, Checkout and Stripe in general will require some PHP code. There is https://stripe.com/docs/checkout/php which isn't the greatest tutorial
is there any way to batch close invoices from the dashboard?
TheAdversary joined the channel
markin
Striper: nope you'd need to use the API for something like that (and that would still be closing 1 by 1)
Striper
is there a way to stop stripe from processing invoices altogether?
markin
Striper: what are you trying to do?
Striper
we have a process that creates invoices and sends them to stripe...in the event of the process gone rogue or bad data, i'd like to know if there's some safety without manually closing bogus invoices
markin
Striper: not really, you'd have to close the invoices individually
Striper: is there a reason you're using invoices though and not just creating a charge?
Striper
the asynchronous nature and auto retry of the invoice is nice to have, we assumed that charges were immediate
having the lag between invoice creation and attempted charge is nice too
Martyn joined the channel
as well as having multiple line items
markin
charges are immediate
the lag is only 1 hour, and the multiple line items is debateable. Basically invoices are designed pretty closely for the stripe subscription model and not the average definition of an invoice
BlipBlop has quit
Dimmerswitch
Sorry, hi! I know I'm asking a lot of questions, but I do want to make sure I do this right. If I install it manually, I have to include this line "require_once('/path/to/stripe-php/init.php');" -- where do I put it, sorry?
gingerale joined the channel
Striper
we find that invoices are better suited for our case of b2b, where customers expect to see a break down of fees
nemothekid has quit
markin
Striper: sure but you already have a notion of an invoice in your own database
Dimmerswitch: you would do that instead of require_once('vendor/autoload.php');
fels joined the channel
SpaceGazebo joined the channel
fels has quit
InstanceOfMichae has quit
Dimmerswitch
+markin But I'm not sure where to actually, like, put it? Sorry, I'm a lot less experienced with this than most people in here!