#memekyTeam
1 messages · Page 1 of 1 (latest)
That's what a Payout is, as far as I can tell. Is there more to your question?
I create a connected account I add funds to it and I send money to it and the client receives it
with the api
I show you the code
STEP ONE:
$CONacount = $stripe->accounts->create(
[
'country' => $pais,
'type' => 'custom',
"email" => $email,
'capabilities' => [
'card_payments' => ['requested' => true],
'transfers' => ['requested' => true],
],
"company"=> [
"name"=> 'Illuminate',
],
"business_type" => "individual",
'business_profile' => [
"mcc" => "5734",
"product_description" => "Es una red social de memes donde los usuarios suben sus memes en diferentes categorías y otros los votan; además se realiza una competición mensual dependiendo de la suscripción, pueden acceder a un contenido y además jugar dinero para ver cuál de sus memes recibe más votos al iniciar la web automáticamente hay un tutorial que lo explica de forma detallada.",
"support_email" => 'gestion@memeky.com',
"support_phone"=> "+34689534962",
"url" => "www.memeky.com"
],
"individual"=> [
"email"=> $email,
"first_name" => $nombre,
"last_name" => $apellidos,
"address"=>[
"city" => $ciudad,
"country" => $pais,
"line1" => $direccion,
"postal_code"=> $zipCode,
"state"=> $provincia
],
"phone"=> $telefono,
"dob" => [
"day"=> $day,
"month"=> $month,
"year"=> $year
],
"id_number"=> $dni
],
"external_account" => [
"country" => $paisCuenta,
"currency" => $currency,
"account_number" => $iban ,
"routing_number" => $enrutamiento,
"object" => "bank_account"
],
'tos_acceptance' => [
"date"=> $t,
"ip"=> $f,
"user_agent"=> $s
],
]
);
STEP TWO:
$extra = $CONacount -> id; $transfer = \Stripe\Transfer::create([
"amount" => $pastaSTRIPE,
"currency" => $currency,
"destination" => $extra,
]);
and the person receives the money in his bank account, HE DOES NOT PAY ME, HE RECEIVES IT, CORRECT?
My final question would be how long does it take to make this movement? 7 days? 1 day? And if we do it on Saturday?
I want to inform the panel that I am creating when the money will arrive for the client's peace of mind
that creates a transfer to the Stripe account balance that they can then pay out to their bank account.
For questions regarding payout timing, please check with our support folks.
Find help and support for Stripe. Our support center provides answers on all types of situations, including account information, charges and refunds, and subscriptions information. Get your questions answered and find international support for Stripe.