#hammad_error

1 messages ¡ Page 1 of 1 (latest)

wraith sluiceBOT
#

👋 Welcome to your new thread!

⏲️ We'll be here soon! We typically respond in a few minutes, but in some cases we might need a bit more time (e.g., server's busy, you've got a complex question, etc.).

⏱️ We close idle threads, which makes them read-only. Once a thread is closed it won't be reopened, but you can start a new thread if you have another question.

🔗 This thread will always be available, even after it's closed. You can find it again using Discord's search, or you can save this link: https://discord.com/channels/841573134531821608/1255776071023067157

📝 Have more to share? Add details, code, screenshots, videos, etc. below.

dawn galleon
#

role 1 : Plat-form (charges the plat form fee)
2 : services-providers(user) (get the service fee )
3 : customers (use the service)

i have total 10 payment scenarios. so i go with charge type : Separate charges and transfers

My stripe account is created in AE.

frank umbra
#

Hi, can you share more? I do not understand what kind of connected account you're looking for

dawn galleon
#

i want to create a stripe connected account using api through following code snipped

const account = await stripe.accounts.create({ type: 'express', // Choose the account type: 'express', 'custom', or 'standard' country: 'AE', // Country code email: 'account_email@example.com', // Email address for the account capabilities: { card_payments: { requested: true }, transfers: { requested: true }, }, business_type: 'individual', // Business type: 'individual' or 'company' individual: { first_name: 'First', last_name: 'Last', email: 'account_email@example.com', phone: '+971501234567', dob: { day: 1, month: 1, year: 1990, }, address: { line1: '1234 Main St', city: 'Dubai', state: 'DU', postal_code: '00000', country: 'AE', }, }, });

Error : Platforms in AE cannot create accounts where the platform is loss-liable, due to risk control measures. Please refer to our guide (https://support.stripe.com/questions/connect-availability-in-the-uae) for more details

frank umbra
mighty wedgeBOT