#peter_40675

1 messages · Page 1 of 1 (latest)

mystic ridgeBOT
weary lagoon
gritty pewter
#

yes sure

#

here it is - req_aWCkZxsa12kQPc

weary lagoon
#

The error message is Routing number must have 9 digits

#

You are passing 108800

#

for the external_account[routing_number]

gritty pewter
#

yes but for testing purpose what should i pass..?

weary lagoon
gritty pewter
#

okay thanks, but now new error appear

#

like - Your destination account needs to have at least one of the following capabilities enabled: transfers, crypto_transfers, legacy_payments

#

when i transfer money

#

req_jZHqHBsSeemCJJ

weary lagoon
#

e.g.
const account = await stripe.accounts.create({
country: 'US',
type: 'custom',
capabilities: {
card_payments: {
requested: true,
},
transfers: {
requested: true,
},
},
});

gritty pewter
#

yes i already pass this

tos_acceptance: {
date: Math.floor(Date.now() / 1000),
ip: accparam.ip,
},
capabilities: {
card_payments: {
requested: true,
},
transfers: {
requested: true,
},
},

#

req_fKSqtGQlSHP25V -- creating account log

weary lagoon
#

Did you finished/completed the onboarding of that account ?

gritty pewter
#

sorry but onbording means.?

weary lagoon
#

si there any missing requirements ?

weary lagoon
gritty pewter
#

No for USD

weary lagoon
#

Check the request you shared with me, the currency is GBP

gritty pewter
#

yes just min

#

req_KxrRTfRjvAYNkX -- still same

#

Your destination account needs to have at least one of the following capabilities enabled: transfers, crypto_transfers, legacy_payments

#

const transfer = stripe.transfers.create({
amount: 1000,
currency: "usd",
destination: "acct_1NmxEVFdG6BonhPi",
}).then(function(transfer) {
console.log(transfer);
resolve(transfer);
}).catch(function(error) {
console.log(error.raw.message);
reject(error.raw.message)
});

weary lagoon