#stripe

/

      • stripe538
        Anyone from Stripe on?
      • :'(
      • hi joined the channel
      • hi is now known as Guest9736
      • Guest9736 has quit
      • DrNo has quit
      • Hannah has quit
      • DrNo joined the channel
      • stripe538 has quit
      • cweiss has quit
      • Chris_m
        @wootongue You should check the webhooks stripe sends for your connected user to see the reason why its disabled or you can contact stripe here https://support.stripe.com/email
      • smarty joined the channel
      • smarty is now known as thesmart
      • thesmart
        Hi, Stripe. If an invoice is sent to a customer and their payment fails, what happens if they then change their subscription to a lower count? Would a NEW invoice be generated for that billing period, or is the existing unpaid invoiced attempted the 2nd time?
      • ^ Note that we don't want to prorate. When a seat is added to a user's subscription, we only want to charge them for the new month.
      • reed_
        if I am using the IOS example backend, is there a way to add to my parameters the "capture" variable?
      • stpaultim joined the channel
      • GuerillaCoder joined the channel
      • GuerillaCoder
        Hey! I'm wondering, with Stripe checkout I get a token but how do I confirm the charge went through? Has the charge happened at all? (im still in testing mode)
      • kaylined joined the channel
      • And how can i pass that confirmation to my PHP script
      • kaylined
        GuerillaCoder: Just joined missed the rest of the convo; but Checkout does that automatically(via the form action); Elements also uses your form action, or you can use AJAX
      • stripe joined the channel
      • GuerillaCoder
        Yeahh I ask because I'm using a custom integration
      • And I'm not sure how to test that charges happen
      • stripe has quit
      • lenochka_ joined the channel
      • kaylined
        GuerillaCoder: token: function(token) {
      • // You can access the token ID with `token.id`.
      • // Get the token ID to your server-side code for use.
      • }
      • That is the callback area once you've got the token you'd use AJAX or do whatever you're going to do with the token.
      • GuerillaCoder
        Okay so anything i do to the token in that function will be called after the person is charged, i dont have to do that manually right?
      • kaylined
        No - checkout doesn't make any charges.
      • Checkout just gives you a token, in that callback function you pass the token to your backend, and your backend(PHP, Ruby, Python, w/e the case may be) can make the charge.
      • GuerillaCoder
        Oh okay I get it thank you!!
      • GuerillaCoder has quit
      • cweiss joined the channel
      • olivierjanss has quit
      • status joined the channel
      • status is now known as Guest6169
      • Guest6169 has quit
      • lenochka_ has quit
      • cp_ joined the channel
      • cp_
        can a stripe engineer help me with a specific question? priority-support said ask for someone to DM me.
      • thesmart has quit
      • stpaultim has quit
      • thesmart joined the channel
      • stpaultim joined the channel
      • sjane joined the channel
      • sjane
        Hi Stripe - My company is using US Stripe account for our Managed Accounts. I have a customer who wants to operate in Canada but use a US bank account for payouts. Is this possible?
      • cp_
        i am attempting to update a card without a $1 authorization. is this possible?
      • adam2222 joined the channel
      • adam2222 has quit
      • thesmart has quit
      • kaylined
        sjane: It should be possible, yes.
      • sjane
        Thanks so much - have a good wkd
      • kaylined
        I am Canadian and have both a US and a CA bank account with Stripe, so I don't think it would be an issue.
      • cp_ Update a card? New account details?
      • gingerale has quit
      • s/account/card
      • cp_
        just update expiration date
      • the stripe documentation for update card object says the card will be reauthorized
      • cweiss has quit
      • kaylined
        cp_: I'm going to quote timebox here "Not without replacing the Card object, but the Smart Card Updater will catch card updates on its own (i.e., replacement cards, new expiries): https://stripe.com/blog/smarter-saved-cards";
      • Peder_ joined the channel
      • coldice42 joined the channel
      • cp_
        Smart Card Updater does not work for cards issued by non-participating banks
      • is there a parameter to set validate to false?
      • kaylined
        right, my understanding would be first portion of that quote would be applicable then "Not without replacing the Card object", based on your question about $1 auth, are you doing this as a Source?
      • lenochka_ joined the channel
      • joe___ joined the channel
      • joe___
        hi
      • all
      • kaylined
        cp_ I've never encountered Stripe charging a $1 authorization before, so I'm not sure where that would be happening.
      • Manu_ joined the channel
      • sjane has quit
      • coldice42 has quit
      • Manu_
        The past few days the API reference site is unusable https://stripe.com/docs/api. I'm using Chrome v58. Am I the only one?
      • cp_
        so, if you POST v1/customers/cus_id/sources/card_id with updated expiry date, you will not see a new authorization?
      • joe___
        can I know how to save a customer object
      • from iOS sdk
      • point of view?
      • Manu_
        It never loads completely thus making the site useless
      • medlmichael joined the channel
      • medlmichael
        hi
      • kaylined
        joe___: you send the token to your webserver, and your server creates the customer object.
      • medlmichael
        trying to understand how to implement discounts for customers when my payout to a vendor is higher than the amount received. Any advice?
      • medlmichael has quit
      • joe___
        so I have to stop the token and send back the next time
      • I have to store the token?
      • kaylined
        joe___ What are you trying to do exactly?
      • coldice42 joined the channel
      • joe___
        suppose I have a customer who logins to my mobile app
      • he used his card to pay for the first time
      • I want him to show his card like xxxxxxxxxxxxx8221
      • when he logs in again
      • I don't want him to enter the card details again
      • when he wants to make next purchase
      • victor- joined the channel
      • kaylined
        So you'd send a request your server asking for his User Details(probably right after logging in), and your server would either pull it from your DB, or pull it from Stripe
      • dechimp joined the channel
      • joe___
        yes thank you
      • but I don't want to store the customer credit card on my side
      • I want stripe to give it back
      • kaylined
        Nor should you; but Stripe returns the last 4 digits of the card
      • joe___
        so whats the process
      • kaylined
        So you'd send a request your server asking for his User Details(probably right after logging in), and your server would either pull it from your DB, or pull it from Stripe
      • joe___
        I have to create a customer object ?
      • victor-
        I have a customer trying to pay me with a corporate credit card but stripe keeps blocking it as "Payment blocked due to high risk." Is there some way I can manually override radar for this rule?
      • kaylined
        Yes, when they first put in their payment details, you use Stripe SDK to create a token, that token gets sent your server, your server creates a Customer object with that token.
      • cweiss joined the channel
      • erlang_rocks joined the channel
      • joe___
        so I have to store the token and send the next time the user logs in ?
      • kaylined
        victor-: I don't think so; https://support.stripe.com/email
      • No joe___: Tokens are one time use, once you create the customer object, you'd use the Customer object.
      • coldice42 has quit
      • joe___
        cool
      • so I have to send the customer object again?
      • I'm missing somewhere
      • kaylined
        Depending on what you're trying to do.
      • joe___
        thanks for giving e clear idea
      • so for next time transaction what exactlyy should I send?
      • will there be any id generated for customer ?
      • kaylined
        Yes, you'll have a cus_xxxxxxxxx id
      • joe___
        cool
      • so if I send that back
      • stripe will charge the customer right?
      • dechimp has quit
      • kaylined
      • joe___
        cool thanks
      • lenochka_ has quit
      • IceBear_ joined the channel
      • IceBear_
        Hey guys, is there a Stripe event that fires off when a subscription's billing cycle changes? As in from one month to the next?
      • stpaultim has quit
      • stpaultim joined the channel
      • jason_funraise joined the channel
      • Anyone on here?
      • jason_funraise
        hello! I'm playing around working on white-labeling Stripe for our platform using stripe connect. Is it possible to remove the restriction on sending managed stripe connect accounts raw credit card data. I promise we're storing data in a 100% PCI compliant way.
      • kier_xd joined the channel
      • kaylined
        jason_funraise: Not sure what you're asking, but https://support.stripe.com/email
      • kier_xd
        Hi!
      • Manu_
        When you update a subscription (e.g. updating the quantity) and setting `prorate` to false. What does happen exactly for the next invoice? E.g. you start with a quantity of 2 in a monthly subscription ($10 per unit), and half way in the month decide he wants to cancel one unit (because we do not refund), we want the next invoice to reflect that he should be only $10 and not $20 as he used to pay when he add 2. Will setting prorate to fa
      • When you update a subscription (e.g. updating the quantity) and setting `prorate` to false. What does happen exactly for the next invoice? E.g. you start with a quantity of 2 in a monthly subscription ($10 per unit), and half way in the month decide he wants to cancel one unit (because we do not refund), we want the next invoice to reflect that he should be only $10 and not $20 as he used to pay when he had 2. Will setting prorate to fa
      • kaylined
        Manu_: spamming your question doesn't help.
      • NightMonkey has quit
      • kier_xd
        I have a sign up form, I have to do some input validation (ex. if email is already used). How can I achieve this via ajax? I use jquery
      • Manu_
        @kaylined, sorry, I thought you could edit your questions like on skype, sorry about that
      • kaylined
        kier_xd: AJAX to your server, your server checks your database for the email?