#stripe

/

      • edgarjs
        koopajah: yes, 1.21.0
      • koopajah
        also if you look at the doc: https://stripe.com/docs/connect/authentication#... it's supposed to be 2 arrays
      • edgarjs
        koopajah: but that would be my platform API key, according to the docs managed account's id is passed along each call
      • tanzchantz joined the channel
      • tanzchantz
        did stripe remove the address fields from checkout?
      • koopajah
        edgarjs: no, you want to look at a balance tra
      • edgarjs: sorry you lost me completely
      • derferman joined the channel
      • tanzchantz: a few months ago already yes
      • tanzchantz
        really?
      • i was able to see that running fine at least a week ago
      • koopajah
        tanzchantz: yes, it's still there but deprecated, if you have the code for it it would still work
      • mbu joined the channel
      • MDrollette
        is there a way to get the "future transfers" that shows in the dashboard via the api?
      • tanzchantz
        koopajah: I am not seeing it...
      • markin
        MDrollette: you could view the available balance. But there isnt a future transger api
      • edgarjs
        koopajah: Stripe::Balance inherits from SingletonAPIResource, and it only accepts one argument (a hash of options). How can I pass both the id of the transaction and the id of the managed account?
      • tanzchantz
        this is kind of worrying for us.. since we use the address to compute sales tax
      • koopajah
        tanzchantz: I'd need way more than that......
      • tanzchantz: http://jsfiddle.net/yxoqkwvv/ works for me
      • lee__ has quit
      • shreeve joined the channel
      • tanzchantz has quit
      • shreeve has quit
      • edgarjs
        koopajah: still lost?
      • hoppi has quit
      • tanzchantz joined the channel
      • koopajah
        yep doesn't seem to work with ruby
      • edgarjs
        koopajah: any workaround?
      • koopajah
        not that I can find in 5 minutes no I'm sorry, you filed a bug so I'm going to poke internally to see if someone can look into it
      • edgarjs
        koopajah: ok, thank you
      • ash__ has quit
      • koopajah
        edgarjs
      • bkrausz joined the channel
      • So your code is wrong here you're trying to retrieve a Balance and not a Balance Transaction
      • edgarjs
        koopajah: nvm I was doing it worng
      • koopajah
        sorry for missing it at first
      • edgarjs
        right! just saw that
      • koopajah
        was thinking something was weird in my code too and compared with the PHP example and saw it :p
      • Taftse|Mac has quit
      • neil_s joined the channel
      • neil_s
        hey all, question for you if you have a second
      • tanzchantz
        koopajah: sorry to buy you.. but have you had time to check it out?
      • var checkout = StripeCheckout.configure({ key: 'publishableKey', zipCode: true, token: function(token) { // Use the token to create the charge with a server-side script. // You can access the token ID with `token.id` $("body").trigger("payments:stripe:token-generated", token); },
      • koopajah
        tanzchantz: do not share code here please, use gist or pastebin
      • FunnyLookinHat joined the channel
      • tanzchantz
      • sorry
      • koopajah
      • neil_s
        we released some code that created a managed account instead of a recipient
      • koopajah
        just tried a simple example and it does work
      • FunnyLookinHat
        when i send "expand" "balance_transaction" with a charge create request through the PHP spec - is there an easy way for me to recursively show all of the values of that balance transaction? Right now I'm having to manually assign each key / value to the object I want to save it to
      • koopajah
        it's not "address: true" AFAIK
      • neil_s
        we had one user create a managed account, is there a way for us to migrate them back to a recipient?
      • tanzchantz
        whoa.. when did you change that field?
      • koopajah
        neil_s: unfortunately no, only Recipient to managed account AFAIK
      • tanzchantz
        with `address: true` it has been working for all this while
      • koopajah
        tanzchantz: I am not aware of us changing, maybe it's an old version, let me see if I can reproduce first
      • neil_s
        ok great
      • edgarjs has quit
      • koopajah
        tanzchantz: even with address:true it works for me: http://jsfiddle.net/xpgvmbvb/
      • neil_s
        is there a way for us to create a recipient account for that user and then assign the bank account from that managed account to the recipient?
      • koopajah
        neil_s: no you'd need to ask him for his bank account details again
      • neil_s
        :(
      • thanks guys!
      • tanzchantz
        koopajah: thats weird
      • koopajah
        tanzchantz: do you have website URL I could look at? Did you try a different browser? We do some A/B testing so it's possible you were selected and then we disabled address collection for your session?
      • tanzchantz
        koopajah: I do have a website URL.. you will nee dto sign up and stuff.. hold on
      • koopajah
        tanzchantz: if you could test on your end first with a different browser that would help
      • neil_s has quit
      • w400z joined the channel
      • w400z
        howdy
      • rubyonr__ joined the channel
      • dqsf
        hi w400z
      • rubyonra_ has quit
      • w400z
        so i'm migrating from balanced and had a couple questions
      • pl3bs has quit
      • dqsf
        sure, go ahead and ask!
      • rubyonrailed joined the channel
      • w400z
        i'm trying to figure out how i migrate the way i've done payouts via balanced to how i'll handle them in stripe
      • rubyonr__ has quit
      • on one of the bank accounts in my balanced dashboard i see a meta key of stripe_customer.funding_instrument.id
      • rubyonra_ joined the channel
      • and it's something like "btok_XXXXX"
      • bjenkins24 joined the channel
      • bjenkins24
        Is there no way to charge a saved card without making it a default card?
      • w400z
        am i supposed to create managed accounts from that? or recipients? or make special case transfers?
      • just not sure what to do from here
      • koopajah
        bjenkins24: pass the card id in `card` and the customer id in `customer`
      • bjenkins24
        I don't see card in the api reference do you mean source?
      • koopajah
        yeah
      • bjenkins24
        ok so I need both then
      • markin
        bjenkins24: koopajah to not make it the default you'd use the add source api
      • aok joined the channel
      • rubyonrailed has quit
      • ashd joined the channel
      • dqsf
        w400z: Balanced had a single object that you could both charge and pay out to. In Stripe these are two separate entities. Customers - you can charge a customer's attached bank accounts or cards. You payout to a managed account's bank account.
      • bjenkins24
        that did it
      • aracodex12 joined the channel
      • thanks for the help!
      • koopajah
        markin: that's not his question
      • or I misunderstood
      • he asked how to charge a card without forcing it as a default
      • bjenkins24
        I wasn't passing the customer with the card
      • markin
        Ah my bad, can't multitask
      • bjenkins24
        that was the issue
      • aracodex_ joined the channel
      • bjenkins24 has quit
      • zekone joined the channel
      • rubyonra_ has quit
      • zekone
        hey guys; is stripe down atm?
      • aracodex12 has quit
      • mbu has quit
      • login page is deaded and i can't load up the stripejs checkout module
      • matrice64 joined the channel
      • w400z
        @dqsf so what do i need to do?
      • dqsf
        w400z: As a first step I'd read through the Connect documents, the Recipes section at the top is especially helpful in understanding the flow and how you'd use things. https://stripe.com/docs/connect#recipes The basic idea is you create a charge from a customer to a managed account and can take a fee in the middle if you'd like https://stripe.com/docs/connect/payments-fees
      • nemothekid joined the channel
      • bkrausz has quit
      • zekone: we're not seeing any outages at the moment, https://status.stripe.com/
      • zekone
        well first, thanks for that link. and any idea why i might be seeing http://i.imgur.com/mEQAL8J.png ?
      • bkrausz joined the channel
      • w400z
        @dqsf how do you add a bank account to a managed account? are all the bank accounts from balanced already verified?
      • jgoldberg has quit
      • koopajah
        zekone: you must have an issue on your end
      • where you're not reaching our servers properly
      • jgoldberg joined the channel
      • zekone: where are you located geographically? also did you email support already?
      • irctc554 has quit
      • markin
        Also any ad blockers or corporate firewalls?
      • zekone
        thanks all the culprit was school-wifi.
      • zekone has quit
      • w400z
        @dqsf nudge
      • kellysutton joined the channel
      • dqsf
        w400z: Sorry for the delay here. You can add a bank account to a managed account when you create or update it: https://stripe.com/docs/api#update_account If the bank accounts in balanced were verified they should be as you move over, you'll want to email balanced support support@balancedpayments.com for full details
      • w400z
        they sent me here :)
      • kellysut_ joined the channel
      • mbu joined the channel
      • tanzchantz has quit
      • TazDevil has quit
      • nilsmunch has quit
      • vlad__ joined the channel
      • vlad__
        Hi, when adding metadata to an object, does it always overright the existing metadata?
      • dqsf
        vlad__: if it's a new metadata field it shouldn't overwrite what's already there
      • koopajah has quit
      • sb_ has quit
      • vlad__
        thats amazing. thanks.
      • maverick9 joined the channel