Stripe- Send Payment to Customers

19,512

Solution 1

As I understand, you should use Stripe managed accounts for your customers to make Payouts.

You'll need to collect additional customer verification data to make payouts to managed accounts:

Solution 2

I think your problem here is that you're misunderstanding the customer option in the stripe dashboard.

A typical use would be you register a customer and once you've done that you can charge their card as required, i.e., they are still sending you money, which I believe isn't what you want.

Two options I can see for you.

It's possible to transfer money from your Stipe account to a 3rd party bank account or credit card. See stripe transfers and also this FAQ

Alternatively there is a now Stripe Connect which might just be the ticket for you.

Good luck!

Share:
19,512
Harshal Mahajan
Author by

Harshal Mahajan

The Developer...!!

Updated on June 04, 2022

Comments

  • Harshal Mahajan
    Harshal Mahajan about 2 years

    I want to use STRIPE PHP API for creating payments to customers and for that i have found the code to create the customers but not for to create payment for them.

    Code to create customers: https://stripe.com/docs/api#create_customer

    require_once('./lib/Stripe.php'); 
        Stripe::setApiKey("sk_test_k9NE13Q2LjsIvYTNQHiP5C5H");
        Stripe_Customer::create(
         array( "description" => "Customer for [email protected]",
                "card" => "tok_1509ycG2gfbJDdl3oYWMe6yq" // obtained with Stripe.js
         ));
    

    My Scenario is : I have some products and customers comes to my site and purchase the product but some of the customers will come from the affiliate banner and we need to pay some commission amount to the affiliate customers.

    So, for such scenario i have to create customers and create payment for them and i have found PHP API code for creating the customers but not for the creating payment to that customers.

  • Harshal Mahajan
    Harshal Mahajan over 9 years
    Thanks for reply but I want to create payment for users not to charge them.See the My Scenario is part of my question.
  • David Taiaroa
    David Taiaroa over 9 years
    @HarshalMahajan , yeah sorry, my coffee hasn't kicked in ;)
  • Harshal Mahajan
    Harshal Mahajan over 9 years
    Stripe Transfer will work only for US accounts, that would be problematic for me and i think Stripe Transfer can get work for me but let me sure about this first. I'm also in contact with support of Stripe.
  • Stan
    Stan almost 5 years
    Thank you Viktor! This should be the accepted answer!