A Profit and Loss object represents a profit and loss report that has been generated for a Business.

Profit and Loss reports are generated for a specific time range and only contain information for categorized transactions that have been journaled to the general ledger.

Attributes

business_id
string

ID of the Business the profit and loss report was generated for.

type
string

Resource type. Value will be “Profit_And_Loss”

start_date
ISO8601 timestamp

Start date for data included in the report.

end_date
ISO8601 timestamp

End date for data in cluded in the report.

income
Line Item object

A Line Item object representing the income line items in the report.

cost_of_goods_sold
Line Item object

A Line Item object representing the cost of goods sold line items in the report.

gross_profit
integer

Gross profit in cents. Calculated by subtracting total cost_of_sales line items from total income line items.

expenses
Line Item object

A Line Item object representing the expense line items in the report.

profit_before_taxes
integer

Net profit before taxes in cents. Calculated by subtracting total expenses line items from gross_profit.

taxes
Line Item object

A Line Item object representing the tax line items in the report.

net_profit
integer

Net profit in cents. Calculated by subtracting total taxes line items from profit_before_taxes

other_outflows
Line Item object

A Line Item object representing business outflow transactions that are not part of the profit and loss statement.

personal_expenses
Line Item object

A Line Item object representing personal expense transactions that are not part of the profit and loss statement.

fully_categorized
boolean

A boolean representing whether all imported transactions within the report date range have been categorized. If FALSE, there are uncategorized transactions within the selected date range, indicating the provided report data may be incomplete.

Line Item object

name
enum

Enum name for the line item. Ex. “REVENUE”

display_name
string

Display name for the line item. Ex. “Revenue”

value
integer

The value of the line item in cents.

child_items
array of Line Item objects

An array of Line Item objects representing child line items within the report section.