Created
April 15, 2021 01:08
-
-
Save ortonomy/2797095a801115b3f9d6c9b0d08e6f27 to your computer and use it in GitHub Desktop.
stripe.php
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
$account = $this->client->accounts->create( | |
[ | |
'type' => 'express', | |
'email' => $user->email, | |
'business_profile' => [ | |
'mcc' => '7392', | |
'url' => 'happyconsults.com' | |
], | |
'capabilities' => [ | |
"card_payments" => [ | |
"requested" => true | |
], | |
"transfers" => [ | |
"requested" => true | |
] | |
], | |
'settings' => [ | |
'payouts' => [ | |
'schedule' => [ | |
'delay_days' => 30, | |
'interval' => 'daily', | |
] | |
] | |
] | |
] | |
); |
Author
ortonomy
commented
Apr 15, 2021
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment