#erikmaiterth
1 messages · Page 1 of 1 (latest)
Can you share the ID (req_xxx) of the API request? https://support.stripe.com/questions/finding-the-id-for-an-api-request
Find help and support for Stripe. Our support site provides answers on all types of situations, including account information, charges and refunds, and subscriptions information. Get your questions answered and find international support for Stripe.
It's req_PmLka8gFcVkP3p
Looks like you're missing the Stripe-Account header from your API request: https://stripe.com/docs/connect/authentication
You made the request as the platform (?): acct_1NX6bVIitJJzMAkn
Yet those API objects exist on a different account: acct_1OSfVLIT2QjfoPdw
Alright, then it may be related to the package I'm using (flutter_stripe). Before initializing the payment sheet I updated the stripeAccountId by
` Stripe.stripeAccountId = stripeAccountId;
await Stripe.instance.applySettings();
viewModel.createPaymentIntent();
// Initialize the payment sheet
Stripe.instance
.initPaymentSheet(..)`
Do you have any package recommendations for Flutter?
https://pub.dev/packages/flutter_stripe is the one most people use, but it's third-party/community maintained
Not really sure what that API call has to do with the Payment Sheet
It was initialised by your backend via our Python SDK