#Burgermancan
1 messages · Page 1 of 1 (latest)
Hi there! You should be able to use this endpoint: https://stripe.com/docs/api/products/list
If you're looking to retrieve all products from a specific Connected account, you'll need to add their account ID to the StripeAccount header: https://stripe.com/docs/connect/authentication
yeah sweet, and what if i wish to retrieve from all connected accounts a consolidated list of products? , currently i'm retrieving all via webhooks but wish to query on demand
or can {stripeAccount: '{{CONNECTED_ACCOUNT_ID}}'} be a lookup/array?
can {stripeAccount: '{{CONNECTED_ACCOUNT_ID}}'} be a lookup/array?
no, this isn't possible. you'd need to loop through each account and make at least one call per account (more than one if accounts have many products)