TransactionWindowStats

Rolling 7-day transaction aggregates: the trailing 7 days (current) vs the 7 days before that (previous), for trend comparison.

Populated only when a list endpoint is called with with_data=true (GET /v2/accounts and GET /v2/terminals); None otherwise.

  • current
    Type: object · RollingWindow

    A single rolling window's transaction aggregates.

    count is the number of distinct transactions (latest event per transaction_id) whose latest event falls in the window; volume is the summed total_amount (cents) over those same transactions.

    • count
      Type: integer · Count

      Integer numbers.

    • volume
      Type: integer · Volume

      Integer numbers.

  • previous
    Type: object · RollingWindow

    A single rolling window's transaction aggregates.

    count is the number of distinct transactions (latest event per transaction_id) whose latest event falls in the window; volume is the summed total_amount (cents) over those same transactions.

    • count
      Type: integer · Count

      Integer numbers.

    • volume
      Type: integer · Volume

      Integer numbers.