Skip to main content
GET
/
v1
/
businesses
/
{businessId}
/
reports
/
cashflow-statement
Fetch cashflow statement
curl --request GET \
  --url https://sandbox.layerfi.com/v1/businesses/{businessId}/reports/cashflow-statement \
  --header 'Authorization: Bearer <token>'
{
  "start_date": "2023-11-07T05:31:56Z",
  "end_date": "2023-11-07T05:31:56Z",
  "reporting_basis": "ACCRUAL",
  "operating_activities": [
    {
      "description": "<string>",
      "amount": 123
    }
  ],
  "investing_activities": [
    {
      "description": "<string>",
      "amount": 123
    }
  ],
  "financing_activities": [
    {
      "description": "<string>",
      "amount": 123
    }
  ],
  "net_cash_flow": 123
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Headers

Content-Type
string

Content-Type must be set to application/json.

Path Parameters

businessId
string
required

The UUID of the business to fetch the cashflow statement for.

Query Parameters

start_date
string<date-time>
required

Start date for the cashflow statement (ISO 8601 format).

end_date
string<date-time>
required

End date for the cashflow statement (ISO 8601 format).

reporting_basis
enum<string>

Accounting basis for the report.

Available options:
ACCRUAL,
CASH
structure
string

P&L structure template to use.

Response

Cashflow statement report data.

start_date
string<date-time>

Start date of the cashflow period.

end_date
string<date-time>

End date of the cashflow period.

reporting_basis
enum<string>

Accounting basis used for the report.

Available options:
ACCRUAL,
CASH
operating_activities
object[]

Operating activities.

investing_activities
object[]

Investing activities.

financing_activities
object[]

Financing activities.

net_cash_flow
integer

Net cash flow in cents.