#Rahul Maru
1 messages · Page 1 of 1 (latest)
👋 Please reach out to our Support team
:question: Have a non-technical question, account issue, or need one-on-one support?
We wish we could help, but this community is focused on developers and technical discussions. Our support team will be able to assist you better than we can: https://support.stripe.com/contact
no that is related to connect account in stripe
@errant monolith can you help me with that
Support team would be able to assist Connect Accounts on your Platform too
when i try to accept tos thorugh api it is showing me the error
support team will take time to resolve it i need the solution for this right now
I am afraid only Support team could help with specific Account inquiries, as they would need to authenticate you as the owner of the Platform before providing any further suggestions. Here is a public forum and we (we are developers) could only help with technical or coding question
const account = await stripe.accounts.create({
type: 'express',
country: 'AE',
email: 'example@email.com',
capabilities: {
card_payments: { requested: true },
transfers: { requested: true }
},
business_type: 'company',
company: {
name: 'eazy 3',
address: {
line1: '123 Main Street',
city: 'Dubai',
state: '',
postal_code: '12345',
country: 'AE'
},
phone: '+971569901002'
},
business_profile: {
mcc: '5734',
url: 'https://eazylife-online.com'
// vat_id: '123456789012345'
}
// tos_acceptance: {
// date: Math.floor(Date.now() / 1000),
// ip: '127.0.0.1'
// }
})
when i am using tos_acceptance i am getting an error
Error: You cannot accept the Terms of Service on behalf of Standard and Express connected accounts.
now tell me why i am seeing this error
what i am doing wrong here
@errant monolith please check this
The error states it! Because you are creating an account with express type, and with Express Account you can't accept TOS on behalf of them
but on standard also it is giving the same error