BillTimeEntriesRequest
Request to convert unbilled billable time entries into client billing line items.
All entries must belong to the same client, be billable, unbilled, and carry an hourly rate.
Line items are shaped by the line mode: combined (one per distinct hourly rate) or one per entry.
Properties
| Name | Type | Description |
|---|---|---|
| timeEntryCodes* | array of string | The codes of the time entries to bill |
The codes of the time entries to bill | ||
| vatRate | enum | Standard Reduced Zero Exempt OutOfScope |
Standard Reduced Zero Exempt OutOfScope | ||
| description | string | The invoice line description. Defaults to a summary of the billed period when omitted. |
The invoice line description. Defaults to a summary of the billed period when omitted. | ||
| billingDate | string | Target invoice date. Defaults to today when omitted. |
Target invoice date. Defaults to today when omitted. | ||
| accountingCode | string | Accounting/nominal code. Defaults from the client billing settings when omitted. |
Accounting/nominal code. Defaults from the client billing settings when omitted. | ||
| lineMode | enum | Combined PerEntry |
Combined PerEntry | ||
JSON Example
{
"timeEntryCodes": [
"string"
],
"vatRate": "Standard",
"description": "string",
"billingDate": "2024-01-01T00:00:00Z",
"accountingCode": "string"
}