#tsr_api

1 messages · Page 1 of 1 (latest)

balmy baneBOT
#

👋 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/1303594733276237847

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

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.

gentle terrace
#

I store the transfer ID in the database for each transaction... and update the corresponding record when a payout occurs. for this i need transfer id from the payout to identify which record i need to update

blazing field
gentle terrace
#

is there any other way to identify the payout from the transfer ?

blazing field
#

No you should go from the Payout

gentle terrace
#

okay

#

Does a manual payout include a transfer ID?

#

I have created some transfers from my Stripe account to a connected account, but there is a minimum 1-day delay for the transfer to reach the test bank account. How can I simulate an immediate transfer for testing?

blazing field
#

No, only Automatic Payout has this breakdown

#

On test mode you can simulate a transfer or payout, but won't be a real funds landing on the bank

gentle terrace
#

I have a few transfers, but there is a minimum one-day delay for the payout to the test account. can we decrease delay period to zero to test ?. How can I simulate the transfer now for testing instead of waiting until tomorrow?

blazing field
#

This is the first time you do payout on Test mode?

gentle terrace
#

Since yesterday evening, I have been trying to integrate...

blazing field
#

there is a minimum one-day delay for the payout to the test account
Could you elaborate a bit more here? Where do you see this 1 day?

gentle terrace
#

By default, the payout for the connected account is 7 days. I changed it to the minimum. I thought the minimum was 1 day, which is why I mentioned it as 1 day. Ref code:

#

settings: {
payouts: {
schedule: {
interval: 'daily',
delay_days: 'minimum'
}
}
}

#

const account = await this.stripe.accounts.create({
type: 'express', // Use 'express' instead of 'custom'
country: country,
email: email,
business_type: accountType,
settings: {
payouts: {
schedule: {
interval: 'daily', // Set daily automatic payouts
delay_days: 'minimum' // Set 1-day delay on payouts
}
}
},}}

blazing field
#

Ah I see

#

don't think there is a way to bypass this, unfortunately

gentle terrace
#

Okay, just to confirm, the delay_days: 'minimum' is only 1 day, right?

blazing field
#

No it depends

For accounts where Stripe manages fraud and dispute liability (for example, Standard accounts), the default is the lowest permitted value for the account, determined by the connected account’s country. If you’re opted into accelerated payout speeds, the value uses the accelerated timing. You can request to lower this by contacting Stripe Support. For accounts where you own fraud and dispute liability, the value remains at your original payout speed by default.

gentle terrace
#

Okay, I will send an email to Stripe support to lower this delay for testing. Thanks