# Intuit 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 Intuit transactions for an account
GET /fdx/intuit/accounts/{account_id}/transactions
> 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`.
### Example
```curl
curl \
  --url "${INCREASE_URL}/fdx/intuit/accounts/account_in71c4amph0vgo2qllky/transactions?offset=qwer123454q2f&limit=100" \
  -H "Authorization: Bearer ${INCREASE_API_KEY}"
```
### Path Parameters
- `account_id` (string, required)
  The identifier of the Account to retrieve.

### Query Parameters
- `startTime` (string, optional)
  Start time for use in retrieval of elements (ISO 8601).

- `endTime` (string, optional)
  End time for use in retrieval of elements (ISO 8601).

- `offset` (string, optional)
  Return the page of entries after this one.

- `limit` (integer, optional)
  Limit the size of the list that is returned. The default (and maximum) is 100 objects.

### Returns a Intuit Account Transactions List object:
```json
{
  "page": {},
  "transactions": [
    {
      "accountCategory": "DEPOSIT_ACCOUNT",
      "accountId": "account_in71c4amph0vgo2qllky",
      "amount": 100,
      "debitCreditMemo": "CREDIT",
      "description": "ACH credit",
      "postedTimestamp": "2020-01-31T23:59:59Z",
      "status": "POSTED",
      "transactionId": "transaction_uyrp7fld2ium70oa7oi",
      "transactionTimestamp": "2020-01-31T23:59:59Z",
      "transactionType": "TRANSFER"
    }
  ]
}
```