Skip to main content
Stripe Account Transactions

A single posted transaction on an account, expressed in the FDX deposit transaction shape. Amounts are absolute values denominated in the account currency; the credit-or-debit sign is communicated via debitCreditMemo. Pending activity is not represented.

List Stripe transactions for an account

List posted transactions for an authorized account, ordered from most recent to oldest. Restrict the window with the optional startTime and endTime ISO 8601 date parameters. Pending transactions are not returned; every entry has status set to POSTED.

curl \
  --url "${INCREASE_URL}/fdx/stripe/accounts/account_in71c4amph0vgo2qllky/transactions?offset=qwer123454q2f&limit=100" \
  -H "Authorization: Bearer ${INCREASE_API_KEY}"
Parameters
account_id
string
Required

The identifier of the Account to retrieve.

More about Accounts.
startTime
string

Start time for use in retrieval of elements (ISO 8601).

endTime
string

End time for use in retrieval of elements (ISO 8601).

offset
string

Return the page of entries after this one.

limit
integer

Limit the size of the list that is returned. The default (and maximum) is 100 objects.