#stripe

/

      • markin
        platea: I don't believe so, that opens up the "ton of work for Stripe from a legal pespective" and the big issue is that it makes chargebacks really hard when you do long holding transactions like that
      • Dorf has quit
      • trevor joined the channel
      • jester joined the channel
      • Dorf joined the channel
      • platea
        Thank you very much markin, will think how to do it with shorter milestones, thank you!
      • Dorf_ has quit
      • markin, may I ask you another question? one example what if freelancer delayed the delivery of the job, how is it possible to resolve this problem in your opinion?
      • what to do with the money which are on hold?
      • markin
        you get into issues. I'd email support, it could be that you could hold the money in your own bank account and then you pay them using some payouts service but I don't know if that would qualify as aggregation
      • platea
        maybe there is a way to put it on hold again?
      • Joseph joined the channel
      • Joseph
        #stripe
      • felipe joined the channel
      • platea
        markin, thank you, I'll try to contact stripe email support
      • markin
        hi Joseph
      • Joseph
        im trying to update stripe in my ios app. before, i would use an STPCard object to hold card info, but now it's saying that i should use STPParams
      • kies^ joined the channel
      • the issue i'm having is i need to get the brand type of the card
      • and STPParams doesn't have a property for brandType
      • like STPCard does
      • what should i do?
      • markin
        Joseph: so you're making a token using STPCardParams?
      • Joseph
        well, i have the token. i just need the brand type of the card so i can trigger a delegate method in another controller to check brand type and display the brand image accordingly
      • markin
        so the token has a card property which should have a brand
      • Joseph
        before, i passed the STPCard object into that delegate method
      • which contained the brand type all the card info
      • since STPCard has deprecated cardNumber, expMonth, etc
      • markin
        token.card should be a STPCard
      • Joseph
        is there anyway i can get the brand type from this delegate method?
      • `- (void)paymentCardTextFieldDidChange:(STPPaymentCardTextField *)textField {`
      • nimsical joined the channel
      • sandstrom joined the channel
      • nimsical
        Hey folks – we’re in the process of getting our EIN but was wondering if it’s possible to activate our account without it while we’re waiting for it to come in (since we have users who want to pay us now).
      • Not sure if this is the right forum for that, but hoping someone knows :P
      • tr12
        nimsical: I don't believe so, but you'd probably want to ask support to be sure
      • nimsical
        @tr12: thanks!
      • Appreciate it.
      • markin
        Joseph: doing some digging
      • Joseph
        thanks
      • i had it working before, but i was on a year out-of-date framework
      • markin
        isn't the brandimage part of the STPPaymentCardTextField already?
      • Joseph
        yeah
      • but i would like get the STPCardBrand
      • and that's not a part of the textfield
      • no STPCardParams
      • nor*
      • markin
        STPCardValidator has a get brand for number method
      • so you can get the number from the STPCardParams I believe
      • Joseph
        from textfield?
      • textField.cardParams
      • markin
        yeah
      • Joseph
        what goes after textField.cardParams?
      • markin
        textField.cardParams.number should be the number
      • and then you can call brandForNumber https://github.com/stripe/stripe-ios/blob/0e0b2...
      • nimsical has quit
      • Thai_ joined the channel
      • ravims joined the channel
      • Thai_
        Hi... wanted to find out if there is a way to 1) build the receipt permalink using the API 2) send an invoice email using the API
      • galgeek joined the channel
      • Joseph
        thank goodness that's exactly what im looking for
      • thanks markin!
      • markin
        Thai_: 1 no 2 yes
      • Thai_
        trying to dig through and didn't find any hint
      • Joseph has quit
      • striped
        What is the difference between charge.failed and invoice.payment_failed? which one should I listen to for a subscription invoice?
      • galgeek
        hello! is it possible to turn off the “declined” messages when using Stripe Checkout?
      • MKCline joined the channel
      • sandstrom joined the channel
      • Blackamoor joined the channel
      • markin
        striped: well an invoice creates a charge, so if that charge fails 2 objects are affected
      • galgeek: if you don't provide an amount to checkout, checkout won't validate the card
      • MKCline
        I'm looking to build an application where we'll be purchasing items from people and instead of using cash we'd like to be able to have them provide their debit card. Is there a way to force the charges to the one paying instead of the one receiving in this scenario? It appeared that the account receiving the payment was the one getting charged for the transaction.
      • striped
        markin: so I just need to listen to one of them, right?
      • markin
        striped: yeah, the invoice one tends to be better
      • MKCline: so its just you buying stuff or you buying stuff that other people are paying for?
      • MKCline
        Just us buying stuff, and typically will only ever buy from the same person once
      • markin
        MKCline: then I can't say Stripe is the right thing for that use case
      • ravims has left the channel
      • MKCline
        In the end we warehouse and re-sell the stuff eventually, but the transaction is really around the purchase, I was hoping to create a managed account based on their debit card and then issue an invoice from that to us and pay that invoice.
      • galgeek
        markin: it’s been recommended that we use auth & capture to reduce fraudulent card testing… but if checkout still displays “authorization declined” then the site is still of use to card testers
      • MKCline
        Any idea what a better technology match might be? Paypal seems obvious, but wasn't wanting to require the paypal account of the user. Venmo would be perfect except they have a pretty low weekly transfer limit. Our business is very seasonal
      • markin
        galgeek: checkout just does a $0/$1 check
      • MKCline: the issue is you're looking for like a money transmission tool (like Paypal or Venmo), Stripe is for processing credit card tools
      • MKCline: maybe like payoneer or something
      • MKCline
        A purchase transactions will be from range from $5 to $700, which can exceed Venmo's weekly limit of $3K pretty quickly. Thanks, I'll check on payoneer
      • markin
        galgeek: but if you don't provide checkout with an amount then it won't do that $0/$1 check
      • galgeek
        ah, so there’ll still be an auth when we create the charge, just no message on the form?
      • markin
        yep
      • galgeek
        got it. thanks, markin!
      • sandstrom joined the channel
      • NickG365_ joined the channel
      • nomad411 has quit
      • Thai_
        how do you send a receipt email if the charge has been charged already?
      • markin
        Thai_: update the receipt_email property of the charge
      • Thai_
        i just tried that... maybe it's because im on test environment... didn't get any email
      • Spydar007 joined the channel
      • markin
        correct no receipts are sent via the api in test mode
      • Thai_
        ahhhh make sense
      • if the receipt_email never change... does it send email
      • si14_ joined the channel
      • markin
        I think so
      • rcwd has quit
      • Thai_
        ok let me try that
      • jxf_ joined the channel
      • jester has quit
      • Thai_ has quit
      • rfv_ joined the channel
      • bogdananton_ joined the channel
      • stripepc______ joined the channel
      • HannahWolfe_ joined the channel
      • ForbesLindesay_ joined the channel
      • A_Nub_ joined the channel
      • jwheare_ joined the channel
      • Isaiah__ joined the channel
      • alicoding_ joined the channel
      • ruel joined the channel
      • ripzay- joined the channel
      • TaylorOtwell_ joined the channel
      • Tenhi_ joined the channel
      • joe1 joined the channel
      • sandstrom has quit
      • dannymichel has quit
      • lvlinux has quit
      • Immutef has quit
      • Darcy has quit
      • ripzay has quit
      • raymorgan has quit
      • bogdananton has quit
      • jxf has quit
      • NickG365 has quit
      • thomassnielsen__ has quit
      • NurdTurd has quit
      • stripepc_____ has quit
      • si14 has quit
      • TaylorOtwell has quit
      • A_Nub has quit
      • ice799 has quit
      • NickG365_ is now known as NickG365
      • ripzay- is now known as ripzay
      • Immutef_ joined the channel
      • Spydar007 is now known as Darcy
      • stripepc______ is now known as stripepc_____
      • thomassnielsen__ joined the channel
      • bVector joined the channel
      • bogdananton_ is now known as bogdananton
      • Isaiah__ is now known as Isaiah
      • platea has left the channel
      • TaylorOtwell_ is now known as TaylorOtwell