The CashFlowStatement object

A Rutter Cash Flow Statement represents the amount of cash and cash equivalents entering and leaving a business entity during a particular period.

Properties

idstring

The Rutter generated unique ID of the cash flow statement.

start_datestring

The ISO 8601 timestamp for the start date of the cash flow statement.

end_datestring

The ISO 8601 timestamp for the end date of the cash flow statement.

currency_codestring

The ISO 4217 currency code of the cash flow statement.

ending_balancestringnullable

The amount of cash and cash equivalents at the end of the given period.

starting_balancestringnullable

The amount of cash and cash equivalents at the start of the given period.

total_financingstringnullable

The total amount of Financing Activities.

total_investingstringnullable

The total amount of Investing Activities.

total_operatingstringnullable

The total amount of Operating Activities.

gross_cash_in_flowstringnullableoptional
gross_cash_out_flowstringnullableoptional
financing_activitiesobject
Show financing_activities attributes
investing_activitiesobject
Show investing_activities attributes
operating_activitiesobject
Show operating_activities attributes
created_atstringnullable

The ISO 8601 timestamp that the cash flow statement was created.

updated_atstringnullable

The ISO 8601 timestamp that the cash flow statement was last updated.

platform_dataobjectoptional

The raw platform data corresponding to the Rutter object.

Show platform_data attributes
Example CashFlowStatement Object
{
  "id": "5b3c1341-a20f-4e51-b72c-f3830a16c97b",
  "start_date": "2021-09-31T00:00:00Z",
  "end_date": "2022-09-31T00:00:00Z",
  "currency_code": "USD",
  "ending_balance": "4063.52",
  "starting_balance": "4063.52",
  "total_financing": "1000",
  "total_investing": "1000",
  "total_operating": "1000",
  "financing_activities": {
    "account_id": "2",
    "name": "Financing Activities",
    "value": "1000",
    "items": []
  },
  "investing_activities": {
    "account_id": "1",
    "name": "Investing Activities",
    "value": "1000",
    "items": []
  },
  "operating_activities": {
    "account_id": "4",
    "name": "Operating Activities",
    "value": "1000",
    "items": []
  },
  "created_at": "2022-01-01T08:00:00.000Z",
  "updated_at": "2022-01-09T08:00:00.000Z",
  "platform_data": {
    "id": 123,
    "data": "Varies by platform"
  }
}

List Cash Flow Statements

GET /accounting/cash_flow_statements
Supported for: Fresh BooksNetSuiteQuickBooksSage IntacctXeroZoho Books

Request Parameters

    access_tokenstringquery

    The access token of the connection.

    end_datestringoptionalquery
    force_fetchenumoptionalquery

    Force a response even if the underlying connection hasn't finished the initial sync.

    One oftrue or false.
    start_datestringoptionalquery

Response Body

    cash_flowsarray
    Show cash_flows attributes
    next_cursorstringnullableoptional
Example Response Body
{
  "cash_flows": [
    {
      "id": "5b3c1341-a20f-4e51-b72c-f3830a16c97b",
      "start_date": "2021-09-31T00:00:00Z",
      "end_date": "2022-09-31T00:00:00Z",
      "currency_code": "USD",
      "ending_balance": "4063.52",
      "starting_balance": "4063.52",
      "total_financing": "1000",
      "total_investing": "1000",
      "total_operating": "1000",
      "financing_activities": {
        "account_id": "2",
        "name": "Financing Activities",
        "value": "1000",
        "items": []
      },
      "investing_activities": {
        "account_id": "1",
        "name": "Investing Activities",
        "value": "1000",
        "items": []
      },
      "operating_activities": {
        "account_id": "4",
        "name": "Operating Activities",
        "value": "1000",
        "items": []
      },
      "created_at": "2022-01-01T08:00:00.000Z",
      "updated_at": "2022-01-09T08:00:00.000Z",
      "platform_data": {
        "id": 123,
        "data": "Varies by platform"
      }
    }
  ],
  "next_cursor": "MTY3NDgzMTk0Ml82MDY4ZDI0ZC02NGRmLTRmN2EtYTM0Ny0zN2ZmNjY5MGVmMjU="
}