#john_api

1 messages · Page 1 of 1 (latest)

modern sableBOT
#

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

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

shell halo
#

I don't believe there's any features that let's you access bank "statements" as such. You probably can build your own flow where your customers can upload their statements via your integration.

#

actually, nvm

brittle lichen
#

yes, I am looking at that.
Can you provide a bit detail:

  1. can the transactions be viewed on Stripe Dashboard? and using API?
  2. Is there a special permission required from the Customer? We are using SetupIntents to add Customer bank account.
  3. Can the same be done on bank account on Stripe Connect?
  4. Can we view transactions over 6 months old? what are the limitations
#

I know we can request the access via SetupIntent call. Is that sufficient or is there a process thereafterr?

shell halo
#

My team won't know much about what's possible with the dashboard as we mainly focus on the API side of things. So you'd likely want to double check with the support team about this.

1/ I believe this is API only.
2/ Aside from request to access - https://docs.stripe.com/financial-connections/transactions?financial-connections-integration=setup_intent#request-access-to-transactions, no other "special" permissions are required.
3/ I believe so, https://docs.stripe.com/financial-connections/connect-payouts
4/ Yes, we return list of upto the last 180 days of transaction history on the account - https://docs.stripe.com/financial-connections/transactions?financial-connections-integration=setup_intent#retrieve-transactions

After Stripe successfully refreshes transactions on the account, you can retrieve them using the transactions list API:

Stripe returns a paginated list of up to the last 180 days of transaction history on an account, depending on the account’s financial institution.

brittle lichen
#

thanks @shell halo
so, we can access last 180 days transactions for a new client, right?

shell halo
#

Yup

brittle lichen
#

@shell halo I do not clearly see any reference to Connect account for collecting the transactions, can you please verify and provide link to the documentation?