#rzhang-Connect
1 messages ยท Page 1 of 1 (latest)
Hi there, you can get the list of account IDs via this API (https://stripe.com/docs/api/accounts/list)
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 i see, so all data we need to query with will be stored on Stripe side? We just need to store the keys on our side?
And are we allowed to store stripe data on our side? No legal implications?
It depends what data you want to query, if it's Stripe resources, and yes you can retrieve them via Stripe APIs.
Please note that you don't have access to your connected account's secret key, you should make APIs on Connected account specify the account ID in the Stripe-Account header. (https://stripe.com/docs/connect/authentication)
I'm engineer so I can't answer legal questions, you can reach out to Stripe support for non-tech questions https://support.stripe.com/contact
Ok thanks! I'm sorry I mean do we just store account IDs on our side so we can easily specify it in the Stripe-Account header?
Yup, you can definitely do that ๐
cool thanks! but can account ids expire? If so, how can we renew it?
No, the ID won't expire, don't worry about it.
Yes, you can collect the application fee when creating the PaymentIntent https://stripe.com/docs/api/payment_intents/create#create_payment_intent-application_fee_amount
Complete reference documentation for the Stripe API. Includes code snippets and examples for our Python, Java, PHP, Node.js, Go, Ruby, and .NET libraries.