#sameer-ahmad_api
1 messages ¡ Page 1 of 1 (latest)
đ Welcome to your new thread!
â˛ď¸ We'll be here soon! Typically we respond in a few minutes, but sometimes we might take a bit longer if the server is busy or if you have a particularly tricky question.
âąď¸ We close idle threads, which makes them read-only. Once a thread is closed it won't be reopened, but you can always 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/1441047417326927984
đ Have more to share? Add more details, code, screenshots, videos, etc. below.
hi there!
hello
Inside when i add more than 1 bank account (payout method), it only add 1 bank account (last one).
can you clarify what you mean by this? maybe sharing screenshots or a video of the issue would help.
ok sure, just wait a minute
i have create recipient using this api
const newRecipient = await fetch(
"https://api.stripe.com/v2/core/accounts",
{
method: "POST",
headers: {
Authorization: Bearer ${process.env.STRIPE_SECRET_KEY},
"Stripe-Version": "2025-10-29.preview", // required for v2 endpoints
"Content-Type": "application/json",
},
body: JSON.stringify({
display_name: "Sameer Ahmad",
contact_email: "sameer.ahmad@txend.com",
identity: {
country: "US",
entity_type: "individual",
},
configuration: {
recipient: {
capabilities: {
bank_accounts: { local: { requested: true } },
},
},
},
}),
}
)
then i create url to onboard user
const accountLink = await fetch(
"https://api.stripe.com/v2/core/account_links",
{
method: "POST",
body: JSON.stringify({
account: newRecipientData.id,
use_case: {
type: "account_onboarding",
account_onboarding: {
configurations: ["recipient"],
return_url: "https://sippinrewards.com/",
refresh_url: "https://sippinrewards.com/",
},
},
}),
headers: {
Authorization: `Bearer ${process.env.STRIPE_SECRET_KEY}`,
"Stripe-Version": "2025-10-29.preview",
"Content-Type": "application/json",
},
}
);
and my recipient has been created which i can see on my dashbaord
wait for next
here i have option to only add 1 bank account at a time,, each time i have add different bank account showing linked in secord screenshot
but there on dashboard, i can only seeing 1 bank account.
i have option here to add more bank account for each recipient
but using hosted url i am unable to add multiple bank account for each recipeint
are you there?
thanks for the clarification!