Advertisement
Guest User

Untitled

a guest
Jul 23rd, 2019
178
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.26 KB | None | 0 0
  1. \Stripe\Stripe::setApiKey("{{PLATFORM_SECRET_KEY}}");
  2.  
  3. $payout = \Stripe\Payout::create([
  4. 'amount' => 2,
  5. 'currency' => 'usd',
  6. 'source_type'=>'bank_account',
  7. 'destination'=>'ba_1EzMYdF9IsW88NSenUraIg5S'
  8. ], ['stripe_account' => CONNECTED_STRIPE_ACCOUNT_ID]);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement