#asadghafoor_14146
1 messages · Page 1 of 1 (latest)
Hello asadghafoor_14146, we'll be with you shortly! 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.
• asadghafoor_14146, 17 hours ago, 24 messages
• asadghafoor_14146, 18 hours ago, 9 messages
• asadghafoor_14146, 22 hours ago, 31 messages
Hi there, please use a valid TIN during onboarding
i a giving valid TIN number but it automatically se the "_" in the i want to give this number "12_3456789" but it automatically set "123_456_789" how can i fix it
I don't think 123456789 is a valid TIN number.
see i got this number from documention because i am in testing mode
but on the form when i insert this number it automatically set the dashes every three number like that
Can you share with me the link of the doc?
sure
https://stripe.com/docs/billing/customer/tax-ids
this s the link of docs
i am on this form
it's done thank u
now i got this url "http://localhost:3000/?scope=read_write&code=ac_Ot9kYoPqZkBZP2nRkjz3V0IvSdJiShtq" in this the id is conneced account id or administrator account id what is this "ac_Ot9kYoPqZkBZP2nRkjz3V0IvSdJiShtq"
Which integration doc are you following along?
https://stripe.com/docs/connect/oauth-standard-accounts
i am using this link
from this code "ac_Ot9kYoPqZkBZP2nRkjz3V0IvSdJiShtq"
how can i access thi i am also want that i transfer money from dashboard to my connected account using node js
i also send u my node js api
app.post('/amount_transfer', async (req, res) => {
try {
const sourceTransactionId = 'ch_3O3ZEpGBlhCZzydA1ZOH4ON4';
const destinationAccountId = 'ac_Ot9kYoPqZkBZP2nRkjz3V0IvSdJiShtq';
const amount = 1600;
stripe.transfers.create({
amount,
currency: 'usd',
source_transaction: sourceTransactionId, // Use source_transaction
destination: destinationAccountId,
}, function (err, transfer) {
if (err) {
console.error(err);
res.status(500).json({ status: 500, message: err.message });
} else {
console.log(transfer);
res.json({ status: 200, message: 'Transfer successful', transfer });
}
});
} catch (err) {
res.status(500).json({ status: 500, message: err.message });
}
});
how can i do this
https://stripe.com/docs/connect/oauth-standard-accounts#token-request an account_id is in a format of acct_xxx, and you should get it from here
yes meray pass asi format mn aaa rahi hy account id "acct_1O547DC2PIRP8u5T" jo yh hy ab mn as mn test payment kaisay send kr sakta hon
I don't understand what you mean
sorry
i want to say that i have account id in this format "acct_1O547DC2PIRP8u5T" now i want to transfer money from my account to connected account
i want to send test payment in this account
how can i do that