#paulC.connect-transfer
1 messages · Page 1 of 1 (latest)
Hey. Can you share the request ID for the failed transfer? https://support.stripe.com/questions/finding-the-id-for-an-api-request
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.
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
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*
Have you onboarded the account? There's testing data to help simulate various account types/scenarios: https://stripe.com/docs/connect/testing
They'll need to be onboarded/verified before you can they can accept transfers
The onboard is not completed , because even if I did complete it , it wouldnt save the data
Thanks will look on it !
Availability of capabilities on the account can be checked on account object: https://stripe.com/docs/api/accounts/object#account_object-capabilities
Complete reference documentation for the Stripe API. Includes code snippets and examples for our Python, Java, PHP, Node.js, Go, Ruby, and .NET libraries.
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
Complete reference documentation for the Stripe API. Includes code snippets and examples for our Python, Java, PHP, Node.js, Go, Ruby, and .NET libraries.
Can you share the account ID?
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 },
},
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
Ah alright ! Will try again after making a test account
This part onwards
You can use that test data link I sent previously to onboard
Okay .... Im on the page with the test data .. but I really cant understand some stuff...
Here (https://stripe.com/docs/connect/testing#test-validation-addresses) they say use these addresses .
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 ?
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
Thanks