#jhonny_500-creating-accounts

1 messages ยท Page 1 of 1 (latest)

daring mulchBOT
#

๐Ÿ‘‹ Welcome to your new thread!

โฒ๏ธ We'll be here soon! Typically we respond in a few minutes, but sometimes we might take a bit longer if the server is busy or if you have a particularly tricky question.

โฑ๏ธ We close idle threads, which makes them read-only. Once a thread is closed it won't be reopened, but you can always start a new thread if you have another question.

๐Ÿ”— This thread will always be available, even after it's closed. You can find it again using Discord's search, or you can save this link: https://discord.com/channels/841573134531821608/1235953840885600287

๐Ÿ“ Have more to share? Add more details, code, screenshots, videos, etc. below.

glass sluiceBOT
#

Below are links to other discussions we've had with you in the past week in case you want to review that information. If your question is related to one of these previous discussions, please provide a comprehensive summary of the current state and what you need help with now. We help many users simultaneously, so a summary allows us to resolve your issue as soon as possible.

tawdry marten
#

Where are you making this request from. Your local machine?

#

Or from a server?

rancid sigil
#

local

tawdry marten
#

Can you make any request to the stripe api?

#

To another endpoint for example?

rancid sigil
#

yes

tawdry marten
#

Ok, which call worked?

rancid sigil
#

actually, there is something weird here

#

I just created an user and it seems to have worked since no errors where shown

#

but my customer does not appear at the dashboard

#

am I looking at the wrong place?

tawdry marten
#

Was the request made in live mode or test mode? And what mode is the dashboard in right now?

rancid sigil
#

test mode

#

oh my

#

it was in live mode

#

haha

#

sorry

#

yeah, the craete customer worked

tawdry marten
#

Ok cool can you share that customer id or creation request?

#

Want to check your request logs for failures

#

Also, to confirm, you've retried creating the bank account? Could have been a transient network error

rancid sigil
#

cus_Q2R89tTLTUCXUL

tawdry marten
#

Looking

rancid sigil
#
{
  type: 'custom',
  country: 'BR',
  email: 'teste@teste.com',
  capabilities: {
    card_payments: { requested: true },
    transfers: { requested: true }
  },
  individual: {
    address: { city: '', country: 'BR', postal_code: '', state: '' },
    email: 'teste@teste.com',
    first_name: 'Teste teste',
    last_name: 'Stripe'
  },
  business_type: 'individual',
  company: {
    address: { city: '', country: 'BR', postal_code: '', state: '' },
    name: 'Teste teste'
  }
}

This was the body I sent to create an account

#

the error appears to be hapenning at the acc craetion step

tawdry marten
#

Yeah this is a 500 error on our end

#

Still looking

old kite
#

Hi there ๐Ÿ‘‹ apologies for the delay, the server is a bit busy. I have a teammate helping look into this further.

rancid sigil
#

no problem

old kite
#

My teammate is still looking for the specific cause, but they're noticing having better luck when creating an account by omitting both the individual and company hashes. Does that allow you to at least create an Account?

grizzled glade
#

๐Ÿ‘‹ I think the issue here is that you're passing fields to the address parameter with an empty value like city, postal_code and state

#

You can either pass non-empty strings to those fields or just take them out completely and just leave country prefilled

rancid sigil
#

ok, seems to have worked by ommiting both individual and company

#

now I get an error saying that the routing_number is required

#

what is the routing_number?

grizzled glade
#

Can you share the request ID?

rancid sigil
#

it doesnt appear at the logs...

#
acct_1PCNZ9QihJuCxCmM {
  external_account: {
    object: 'bank_account',
    country: 'BR',
    currency: 'BRL',
    account_holder_name: 'Teste teste',
    account_holder_type: 'individual',
    account_number: '30.974.821/0001-90'
  }
}

payload

#

response:

{
    "statusCode": 400,
    "message": "Missing required param: external_account[routing_number]."
}
grizzled glade
rancid sigil
#

one question about bank account creation... Here in Brazil we need to specify the "Bank Number" (I dont know if you have something similar where you live) to be able to make transferences, with the Bank Number, we are able to know to which bank we are sending the money

#

is there something like this in Stripe?

#

is it the routing number?

grizzled glade
#

I believe so

daring mulchBOT
#

jhonny_500-creating-accounts

grizzled glade
#

Let us know if that unblocked you ๐Ÿ™‚

rancid sigil
#

yeah, tried using the account number 000999999991 and it still requires the routing number

#

is this param required?

grizzled glade
#

It depends on the country but also, details are different from brazil based accounts

#

You can use the dropdown to switch the country