#Cavalaa
1 messages ยท Page 1 of 1 (latest)
live
would you mind sharing the request ID? https://support.stripe.com/questions/finding-the-id-for-an-api-request
Find help and support for Stripe. Our support center provides answers on all types of situations, including account information, charges and refunds, and subscriptions information. Get your questions answered and find international support for Stripe.
the failed requests arent appearing in my logs but I found this req_id in my network f12 menu on my site req_EUiC6gMhA3k0Fc
please check your balance here https://dashboard.stripe.com/balance/overview
Sign in to the Stripe Dashboard to manage business payments and operations in your account. Manage payments and refunds, respond to disputes and more.
I'm trying to create a payout from a connected account to its card
sorry my bad, you're right, I misread the request
ok I just took a look there's a pending balance but not an available one on that account
so is that because it's set to do daily payouts?
is there any way I can remove that so it all becomes available until manual payouts?
you can set it to manual payout
and can I do that at the point of account creation in backend code, or will I have to set each one manually after?
but in all cases, the pending is not related to the payout schedule but rather to the delay_days
Complete reference documentation for the Stripe API. Includes code snippets and examples for our Python, Java, PHP, Node.js, Go, Ruby, and .NET libraries.
ok, so I need to change the delay_days variable?
there are some limitations you can read about here https://stripe.com/docs/connect/manage-payout-schedule
i've noticed another Issue I'm having
I'm making deposits to a connected account but the application fee isnt being sent to my account and is coming up as 0 although there is a fee being taken somewhere before the connected account receives the depost
are you using Direct Charges?
applicationFeeAmount := int64(feePercent / 100 * float64(amount))
// Construct the payment intent for the connected account
params := &stripe.PaymentIntentParams{
Amount: stripe.Int64(amount),
Currency: stripe.String(string(stripe.CurrencyGBP)),
ApplicationFeeAmount: &applicationFeeAmount,
ReceiptEmail: stripe.String(user.Email),
AutomaticPaymentMethods: &stripe.PaymentIntentAutomaticPaymentMethodsParams{
Enabled: stripe.Bool(true),
},
TransferData: &stripe.PaymentIntentTransferDataParams{
Destination: stripe.String(connectedAccountID),
},
}
maybe &applicationFeeAmount is null? do you have an example payment ID we can look at?
yeah but there's nothing arriving in the balance of my main account and the fees are due?
what do you mean by that?
my screenshot shows the 14p arriving to the balance of your account. You can also see it on https://dashboard.stripe.com/balance
yes, you can see from the link and screenshot that the Stripe fee is 30p
With regards to the money becoming available to withdraw, if the account is manual payouts, how long will it take before I should be able withdraw after making a deposit
it depends on the country of your account and other details(https://stripe.com/docs/payouts#standard-payout-timing). You can see this in the dashboard usually(the "available on" date).
yeah but i set the accounts to manual should it make a difference
i.e. wouldnt that remove payout delay time
no, it makes it worse actually
on that page we say 3 days for example. That means that if you do a payment on Monday, on Thursday it's available, and it's only at that point that you can successfully call the Payouts API to create a manual payout for that amount(and then there is flight time for the bank transfer to happen and arrive)
Ok so what is the way by which I can reduce that to a minimal value
just leave things as the default(automatic daily payouts) unless your use case requires something else