Mayson Monorepo Documentation
    Preparing search index...

    The Report Run object represents an instance of a report type 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 a file where you can retrieve your results. For an overview, see API Access to Reports.

    Note that certain report types can only be run based on your live-mode data (not test-mode data), and will error when queried without a live-mode API key.

    interface ReportRun {
        id: string;
        object: "reporting.report_run";
        created: number;
        error: string;
        livemode: boolean;
        parameters: Stripe.Reporting.ReportRun.Parameters;
        report_type: string;
        result: Stripe.File;
        status: string;
        succeeded_at: number;
    }
    Index

    Properties

    id: string

    Unique identifier for the object.

    object: "reporting.report_run"

    String representing the object's type. Objects of the same type share the same value.

    created: number

    Time at which the object was created. Measured in seconds since the Unix epoch.

    error: string

    If something should go wrong during the run, a message about the failure (populated when status=failed).

    livemode: boolean

    true if the report is run on live mode data and false if it is run on test mode data.

    report_type: string

    The ID of the report type to run, such as "balance.summary.1".

    result: Stripe.File

    The file object representing the result of the report run (populated when status=succeeded).

    status: string

    Status of this report run. This will be pending when the run is initially created. When the run finishes, this will be set to succeeded and the result field will be populated. Rarely, we may encounter an error, at which point this will be set to failed and the error field will be populated.

    succeeded_at: number

    Timestamp at which this run successfully finished (populated when status=succeeded). Measured in seconds since the Unix epoch.