#jackson_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/1240351927758225409
đ Have more to share? Add more details, code, screenshots, videos, etc. below.
https://docs.stripe.com/api/identity/verification_sessions/list
Ideally If I could pass the account_id to the list as a filter would be ideal
FYI our platform is in the insights_beta=v2; if that helps
I believe you can just make a List All Verifications API call: https://docs.stripe.com/api/identity/verification_sessions/list
Making sure to use the connect account header or a different form of connect authentication to make the request on behalf of each connect account: https://docs.stripe.com/connect/authentication
Ahhhhh, okay. We don't have a ton of context on betas in this server. What is the insights_beta supposed to do?
Got it, okay.
Complete reference documentation for the Stripe API. Includes code snippets and examples for our Python, Java, PHP, Node.js, Go, Ruby, and .NET libraries.
What are you trying to do with the Verification Sessions?
we store them in our db to use in our product + internal reporting
and i need to backfill the data by pulling in all verification sessions and matching them to the connected account.
technically i could just do a list on the root but i would have to loop through all sessions for the lifetime of our account to make sure none are missed
I guess I'm not sure if it's the List All API that you can't access specifically, or if Stripe disallows Connect requests to any of the verification APIs. I assume you can make a GET request to get a single Verification Session, yes?