#paulC.connect-transfer

1 messages · Page 1 of 1 (latest)

proper beacon
gritty pumice
#

Hello ! Sure , 1 sec please

#

Pretty weird , but there's no log of actually trying to perform this

#

I can replicate the issue and send the whole error message

#

1 min please

gritty pumice
#

Okay , additionally , I do get this error again , when theough I thought I solved it :Your destination account needs to have at least one of the following capabilities enabled: transfers, legacy_payments

#

But this is how I am doing it

#

account = await stripe.accounts.create({
type: 'express',
country: 'NL',
business_type: 'company',
capabilities: {
card_payments: { requested : true },
ideal_payments: { requested : true },
transfers: { requested : true },
},
settings: {
payouts: {
schedule: {
interval: "manual"
}
}
}
})

#

even though*

proper beacon
#

They'll need to be onboarded/verified before you can they can accept transfers

gritty pumice
proper beacon
gritty pumice
# proper beacon Availability of capabilities on the account can be checked on account object: ht...

Yes , I am using this one https://stripe.com/docs/api/accounts/create#create_account-capabilities . After trials and errors I finally got that to work a couple days ago , but now it doesnt even though I am following these docs

proper beacon
#

Can you share the account ID?

gritty pumice
#

sure

#

acct_1Jw1S0PPzOhY2OkV

#

I just logged it : capabilities: {
card_payments: 'inactive',
ideal_payments: 'inactive',
transfers: 'inactive'
},

#

But this is how I create it :

#

capabilities: {
card_payments: { requested : true },
ideal_payments: { requested : true },
transfers: { requested : true },
},

proper beacon
#

As I said, you need to onboard the account. You've only requested those capabilities be activated, Stripe has to verify and enable the account

gritty pumice
#

Ah alright ! Will try again after making a test account

proper beacon
#

This part onwards

#

You can use that test data link I sent previously to onboard

gritty pumice
#

Okay .... Im on the page with the test data .. but I really cant understand some stuff...

#

Which these ??? should I use them in the api when I create the test account , should I fill them in the actual form ?

#

address_full_match ?

proper beacon
#

You'd use that test data on the hosting onboarding form that you redirect users to with the Account Link

#

You'd want address_full_match yes. Each value has a different outcome as explained on the page

gritty pumice
#

Thanks