BalanceTransaction

Balance transactions represent funds moving through your account.

  • amount
    Type: integerFormat: int64

    Gross amount of this transaction (in cents (or local equivalent)). A positive value represents funds charged to another party, and a negative value represents funds sent to another party.

  • created
    Type: stringFormat: date-time

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

  • currency
    Type: object · Currency

    Three-letter ISO currency code

    • iso
      Type: string
      required

      Three-letter ISO currency code

    • scale
      Type: integer
      required

      Number of decimal places for this currency

  • exchange_rate
    Type: number | nullFormat: double

    If applicable, this transaction uses an exchange rate. If money converts from currency A to currency B, then the amount in currency A, multipled by the exchange_rate, equals the amount in currency B. For example, if you charge a customer 10.00 EUR, the PaymentIntent's amount is 1000 and currency is eur. If this converts to 12.34 USD in your account, the BalanceTransaction's amount is 1234, its currency is usd, and the exchange_rate is 1.234.

  • fee
    Type: integerFormat: int64

    Fees (in cents (or local equivalent)) paid for this transaction. Represented as a positive integer when assessed.

  • id
    Type: string
    max length:  
    5000

    Unique identifier for the object.

  • net
    Type: integerFormat: int64

    Net impact to the balance (in cents (or local equivalent)). A positive value represents incrementing the balance, and a negative value decrementing the balance. You can calculate the net impact of a transaction on a balance by amount - fee