#irishdev-arrival-date

1 messages · Page 1 of 1 (latest)

spring flame
cedar cape
#

Could you help us understand what you're referring to by arrival_date?

random lantern
#

Hi

#

The date the money arrives into the bank account

#

it used to be 7 days

#

now it 3 or 7 I understand

spring flame
#

Retrieve the payment intent with expand[]='charges.data.balance_transaction'

random lantern
#

ah so its "available_on"

#

thank you

#

one more question if possible... will this ever be null? or it will always have a value

#

is it 7 days unless user changes to 3

#

or is it safe to always read from that field

spring flame
#

It depends on the payment method used and you account configuration, so it wont be a fixed number of days

#

This available_on date by the way is when the payment will be available in your Stripe balance

#

The payout to your bank account is what has an arrival_date estimate.

#

These are separate (but related) things.

random lantern
#

ok. do we have access to arrival_date anywhere?

spring flame
#

Yea, on the payout as you pointed out, but this is separate from the payment coming in

random lantern
#

do you have to make a call to get payout object? or is it available on payment intent somewhere, like available_on

spring flame
#

For example, if your Stripe account is based in a country with a T+3 standard payout speed and you are on a manual payout schedule, your Stripe balance will be available to payout within 3 business days from the time a payment was captured; if you are on daily automatic payout schedule at a T+3 speed, the funds paid out daily would be from 3 business days preceding.

Most banks deposit payouts into your bank account as soon as they receive them, though some may take a few extra days to make them available.

random lantern
#

ok cool

#

so if its automatic payout, available_on and arrival_date are the same? otherwise, it could be difference of 3 days

spring flame
#

Stripe tries to make those the same with automatic yes, otherwise it depends on the standard timing for your country

random lantern
#

ok thanks for the information