@paysafe/paysafe-wallet-saas-web
    Preparing search index...

    Interface TransactionHistoryReportRequest

    Represents a request used to initiate the generation of a transaction report for a specific wallet account. This request allows specifying criteria such as date range, transaction types, and the desired format of the report.

    interface TransactionHistoryReportRequest {
        accountId: string;
        endDate?: string;
        filters?: TransactionHistoryReportRequestFilters;
        format?: TransactionHistoryReportFormat;
        startDate?: string;
    }
    Index

    Properties

    accountId: string

    Unique customer wallet account identifier.

    endDate?: string

    The end date for the report. The range between startDate and endDate must not exceed 2 years.

    Format should be ISO 8601 in UTC. Represents RFC 3339, section 5.6 date-time.

    "2024-05-08T14:43:33Z"
    
    filters?: TransactionHistoryReportRequestFilters

    Specifies the filters to be applied to the report. Currently, only the transactionType filter is supported.

    The format of the report.

    startDate?: string

    The start date for the report. The range between startDate and endDate must not exceed 2 years.

    Format should be ISO 8601 in UTC. Represents RFC 3339, section 5.6 date-time.

    "2024-05-08T14:43:33Z"