CostProfitReportDto
The Cost & Profit report: what tracked time cost the practice over a period, what the
billable portion of it was worth, and the profit between the two — grouped by team member
or client. Cost counts all time (billable or not) at the stamped cost rate; billable value
counts billable time at the stamped charge-out rate, whether billed yet or not.
Properties
| Name | Type | Description |
|---|---|---|
| summary | CostProfitSummaryDto | |
| rows | CostProfitRowDtoPagedResult | |
| generatedAt | string | When the report was generated (UTC) |
When the report was generated (UTC) | ||
JSON Example
{
"summary": {
"totalMinutes": 0,
"billableMinutes": 0,
"costAmount": 0,
"billableAmount": 0,
"profitAmount": 0
},
"rows": {
"data": [
"..."
],
"totalCount": 0,
"offset": 0,
"limit": 0,
"hasMore": false
},
"generatedAt": "2024-01-01T00:00:00Z"
}