#stripe

/

      • jonnym
        I should be ok to ajax my transactions right? Since they are done with tokens and tokens cant be charged more than once
      • I'm not creating customers
      • koopajah
        not sure what you mean by "ajax my transactions"
      • greenup joined the channel
      • jonnym
        as in not take them to another page, do the charge and show them the response on the same page.. i think i already know the answer to that question
      • koopajah
        then yes posting or sending an ajax requests wouldn't change anything
      • Bmarticus has left the channel
      • _creativename has quit
      • vmayoral joined the channel
      • dagda1_ has quit
      • dagda1 joined the channel
      • alexkane joined the channel
      • mxs_ joined the channel
      • mxs_
        Hey guys / girls. Working on setting up Stripe, but need an SSL. Does anybody have any cheap SSL that'll work with Stripe?
      • koopajah
        take whichever you prefer I think
      • mxs_
        Yeah just see them ranging from like $10 - $500
      • koopajah
        yeah just take one from namecheap for example
      • mxs_
      • koopajah
        I suppose yes
      • tlarevo joined the channel
      • PrplHaz4
        mxs_: i've been using a comodo cert and it seems fine...
      • mxs_
        alright thanks guys, just wanted to make sure
      • MarkyC joined the channel
      • mxs_ has quit
      • andy202 joined the channel
      • scobar has quit
      • scobar joined the channel
      • brockhaywood joined the channel
      • sivy joined the channel
      • s3shs joined the channel
      • andy202 has quit
      • brockhaywood has quit
      • brockhaywood joined the channel
      • boucher joined the channel
      • edrocks joined the channel
      • edrocks has quit
      • aileen_ joined the channel
      • dqsf joined the channel
      • salesatnitrocad joined the channel
      • slatem joined the channel
      • slatem has quit
      • cleverfoo joined the channel
      • cleverfoo
        howdy folks, quick question, can I use the checkout button with a subscription?
      • koopajah
        cleverfoo: checkout only creates a card token. You then send it to your server to create a charge or a subscription, up to you
      • cleverfoo
        ahhh
      • thx
      • one more question (sorry) is there any guide on styling the button? I can't find anything in the docs
      • pharrukh has quit
      • koopajah
        so you can't style the button but you can use Custom Checkout ( https://stripe.com/docs/checkout#integration-cu... ) to use your own button
      • salesatnitrocad has quit
      • brockhaywood has quit
      • mikeybisbo joined the channel
      • cleverfoo
        thx again
      • koopajah
        sure!
      • mikeybisbo has quit
      • greenup
        is anyone in here using stripe with drupal?
      • brockhaywood joined the channel
      • irctc668 has quit
      • jedahan joined the channel
      • tamatojuice joined the channel
      • Luke joined the channel
      • boucher has quit
      • brockhaywood has quit
      • tamatojuice
        howdy y'all, i have a generic question about stripe Plans
      • koopajah
        tamatojuice: sure what's up?
      • tamatojuice
        anyone available
      • krisfremen
        hey there
      • I have a client who wants to have two accounts to charge cards to.. one in the US and one in Canada
      • tamatojuice
        sweet. uhm, so, i need to create a plan that is $100/month and bills every three months
      • krisfremen
        is this doable with stripe?
      • tamatojuice
        to be totally clear -- the ``amount`` property of the ``plan`` object should be 100, correct?
      • koopajah
        krisfremen: sure if he has a business in both countries
      • krisfremen
        is it possible to change the publishable keys during the checkout process based on billing address?
      • sb_ joined the channel
      • koopajah: yes, he does
      • koopajah
        tamatojuice: depends, in the dashboard yes, in the API no it should be 10000 since the amount is in cents
      • tamatojuice
        the ``interval`` will be ``"month"``, and the ``interval_count`` will be ``3``
      • right, totally, sorry -- in cents
      • koopajah
        krisfremen: it's possible if you build it yourself yes
      • nitzanm joined the channel
      • krisfremen
        ah, but not with the pre built stripe.js?
      • tamatojuice
        but i mean, since the amount is per interval, and the interval is month, it should be 10000
      • krisfremen
        I wanted to keep it simple :(
      • koopajah
        krisfremen: if you collect the billing address on your end, then you can change the API key dynamically with Custom Checkout
      • tamatojuice: no you said the interval would be for 3 months no? I'm confused now
      • tamatojuice
        koopajah: the docs just say that amount is "the amount to be charged over the interval specified"
      • so does the "interval" (docs) refer to the ``interval``, which is month
      • OR
      • the ``interval`` times the ``interval_count``, which is 3
      • does my question make sense? haha
      • dqsf has quit
      • another_greg joined the channel
      • nitzanm
        Hey guys, is there any way to disable all billing (stop all subscriptions) in a Stripe account without deleting the account?
      • koopajah
        tamatojuice: hum so you just put the amount you want to charge your customer each time. Don't think about the interval or anything
      • nitzanm: manually delete all the subscriptions/plans?
      • tamatojuice
        okay cool
      • i'm glad i asked. i assumed it would be the other way around
      • nilsmunch has quit
      • jtmarmon joined the channel
      • dqsf joined the channel
      • koopajah: i think that should be clarified in documentation :)
      • koopajah: thanks a ton for your time -- see ya!
      • koopajah
        will make a note of this! see ya!
      • tamatojuice has left the channel
      • livingstn has quit
      • tlarevo has quit
      • nitzanm
        koopajah: Is there an easy way to do get a list of active subscriptions? I have 800+ customers so it's difficult to go customer by customer to see if they have active subscriptions.
      • koopajah
        nitzanm: in the dashboard you can click on "Filter" and get only the ones with a sub
      • davecap joined the channel
      • pouledodue joined the channel
      • mxs_ joined the channel
      • mxs_
        anybody know the cmd to move a cert_chain.crt from my computer over to /etc/ssl in the server? :3
      • gladely joined the channel
      • markin
        mxs_: scp?
      • brockhaywood joined the channel
      • Chillax joined the channel
      • mxs_
        getting permission denied
      • markin
        mxs_: so first you'd copy it to a folder where you have permissions, then you can ssh and do a sudo cp to /etc/ssl
      • another_greg has quit
      • another_greg joined the channel
      • mxs_
        scp: /etc/ssl/cert_chain.crt: Permission denied | seems like it's the ssl folder on the server
      • markin
        mxs_: so first you'd copy to like ~/certs (make that directory first) and then you can copy from ~/certs to /etc/ssl
      • jtmarmon has quit
      • jtmarmon joined the channel
      • magmatic joined the channel
      • magmatic
        Is it possible, through the API, to get a list or total of all payments from a certain customer?
      • koopajah
        magmatic: https://stripe.com/docs/api#list_charges and pass the `customer` parameter
      • magmatic
        Thanks!
      • vmayoral has quit
      • kevinburke joined the channel
      • kevinburke
        Hi! We are trying to verify a recipient and it's failing, or we are still seeing "verified": false in the recipient response.
      • koopajah
        kevinburke: we don't verify recipients automatically/in real time so that's expected
      • kevinburke
        I have double checked with the recipient that we have their SSN and full legal name. I've written in to support about it. What are they going to ask us to do?
      • MarkyC joined the channel
      • koopajah: Understood but I sent the verification request 16 hours ago :)
      • Still false.
      • koopajah
        kevinburke: I mean that we might not even do it for weeks
      • and only when you start making transfers
      • kevinburke
        Ah, good, and until then all of the transfers to that recipient will be held?
      • koopajah
        no
      • let's try to explain it all at once
      • kedr has quit
      • kevinburke
        I know there's a threshold, in this case we're bumping up against it for this recipient
      • which is why we're trying to get them verified
      • dqsf has quit
      • koopajah
        then you need to email support
      • kevinburke
        Yep, we're on it. Was curious if they were going to ask us to take action (email in a photo ID or upload a physical address or any other steps)
      • nilsmunch joined the channel
      • MarkyC_ joined the channel