#memekyTeam
1 messages · Page 1 of 1 (latest)
Wow, that's a lot of unformatted code. What is your question here?
the code is fine, check the full_name_aliases part
I don't get this part right
the variables are fine, everything is ok, only it is a connected account for singapore and the alias does not enter
- Can you share a request ID for your most recent request? Here's how you can find a request ID: https://support.stripe.com/questions/finding-the-id-for-an-api-request
- What are you trying to do
- What is happening that isn't what you expect?
I am creating a custom connected account in singapore
they ask me for the alias
In the following code where do you put the alias to create accounts connected in Singapore?
$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',
"url" => "www.memeky.com"
],
"individual"=> [
"email"=> $email,
"first_name" => $nombre,
"last_name" => $apellidos,
"address"=>[
"city" => $ciudad,
"country" => $pais,
"line1" => $direccion,
"line2" => $linia2,
"postal_code"=> $zipCode,
"state"=> $provincia
],
"phone"=> $telefono,
"dob" => [
"day"=> $day,
"month"=> $month,
"year"=> $year
],
"id_number"=> $dni,
'nationality' => $nacionalidadSingapour,
],
"external_account" => [
"country" => $paisCuenta,
"currency" => $currency,
"account_number" => $iban ,
"routing_number" => $enrutamiento,
"object" => "bank_account"
],
'tos_acceptance' => [
"date"=> $t,
"ip"=> $f,
"user_agent"=> $s
],
]
);
ask your partner @haughty agate we talked about this a moment ago, only now I've decided to do the code in another way and I can't do it right
Can you please restate this question? It's not clear to me what alias you are talking about. My colleague @haughty agate appears to be referring to the requirements hash to ensure you provide all the necessary information.