Retrieves the details of a Report Type. (Certain report types require a live-mode API key.)
Parameters
No parameters.
Returns
Returns the specified ReportType
object if found, and raises an error otherwise.
{ "id": "balance.summary.1", "object": "reporting.report_type", "data_available_end": 1695081600, "data_available_start": 1667952000, "default_columns": [ "category", "description", "net_amount", "currency" ], "livemode": false, "name": "Balance summary", "updated": 1695109133, "version": 1}
Returns a full list of Report Types.
Parameters
No parameters.
Returns
A dictionary with a data
property that contains an array of Report Types. Each entry is a separate ReportType
object.
{ "object": "list", "url": "/v1/reporting/report_types", "has_more": false, "data": [ { "id": "balance.summary.1", "object": "reporting.report_type", "data_available_end": 1695081600, "data_available_start": 1667952000, "default_columns": [ "category", "description", "net_amount", "currency" ], "livemode": false, "name": "Balance summary", "updated": 1695109133, "version": 1 } ]}
Report Runs v2
The ReportRun
object represents an instance of a Report
generated with specific run parameters. Once the object is created, Stripe begins processing the report. When the report has finished running, it will give you a reference to the results.
Reports v2
The Report resource represents a customizable report template that provides insights into various aspects of your Stripe integration.
A Financial Connections Account represents an account that exists outside of Stripe, to which you have been granted some degree of access.