#jefskoa_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/1420055172377215097
📝 Have more to share? Add more details, code, screenshots, videos, etc. below.
Below are links to other discussions we've had with you in the past week in case you want to review that information. If your question is related to one of these previous discussions, please provide a comprehensive summary of the current state and what you need help with now. We help many users simultaneously, so a summary allows us to resolve your issue as soon as possible.
- jefskoa_webhooks, 1 day ago, 34 messages
- jefskoa_webhooks, 4 days ago, 45 messages
- jefskoa_api, 4 days ago, 24 messages
hi there, can you share your account id (acct_123) and the exact CLI command you're running?
I believe the issue is how I'm logging in from the StripeCLI to our sandbox. The PayoutId is po_1SAKv2IvHz5DOm3oPcMTObub
Exact CLI: stripe reporting report_runs create --report-type payout_reconciliation.by_id.summary.1 --parameters.payout po_1SAKv2IvHz5DOm3oPcMTObub
Account when logged in: Done! The Stripe CLI is configured for KOA Development Sandbox with account id acct_1QptxoI1VSC7qNYw
yeah, I think you're right. the account ID I'm seeing for that payout doesn't match the one from your last message
When I issue Stripe Login, I am not offered the option to which connected account to use, it is just the Dev Sandbox. Is there something I need to add when logging in? The connected account for that payout is: acct_1Qpv01IvHz5DOm3o
And it doesn't look like I can pass that connected account as a param (which would be great).
we're not super familiar with the reporting APIs or CLI in this channel (which is mainly for API integration questions) but I'll see if I can find a way for you to do that, one moment
have you tried using this connected_account parameter? https://docs.stripe.com/api/reporting/report_run/create?lang=cli#create_reporting_report_run-parameters-connected_account
I'd love to! In the CLI and in my c# code, but from neither seem to accept that param:
stripe reporting report_runs create --report-type payout_reconciliation.by_id.summary.1 --parameters.payout po_1SAKv2IvHz5DOm3oPcMTObub --parameters.connected_account acct_1Qpv01IvHz5DOm3o
do you get an error message of some kind when you try?
Ultimately, I'm trying to use the reporting APIs to get a report run
Yes: unknown flag: --parameters.connected_account
ah, it looks like report runs for Connect may use different report types https://docs.stripe.com/reports/report-types/connect
you may need connected_account_payout_reconciliation.by_id.summary.1 instead of payout_reconciliation.by_id.summary.1
Rats, still tells me the payout cant be found or doesn't accept the connected_account param.
hmm this may not be possible. I just found this in the docs https://docs.stripe.com/reports/options#connect-accounts
Connect platforms can’t view the financial reports for connected accounts that can access the full Stripe Dashboard and aren’t controlled by the platform. Holders of such accounts can independently control them if they were created with Stripe directly. Those accounts can contain transactions that originate outside of your platform. Because they have access to the full Stripe Dashboard, they can generate their own financial reports.
the connected account you're working with does have full dashboard access. but if you'd like full confirmation or to see if there's a possible workaround, I'd recommend reaching out to Stripe Support, they can direct you to someone who's more familiar with reporting https://support.stripe.com/?contact=true
Ug, hope there is a work around/solution. I'm developing a custom integration from a Stripe payout to a QuickBooks deposit for our 500 locations. If I can't get that summary payout report, I'm toast.
yeah, at this point I'd say reach out to general support, they'll be able to help you more effectively
OK, what Stripe channel handles CLI help? I may be able to at least get logged into the correct connected account in the cli and look at return structures.
if there is one I'm not familiar with it. you should file a support case using the link I sent above
BTW, using that connect report as you suggested above allows me to pass the connected account in our C# api request to Stripe. So you helped me out a great deal.