The budget for a miscellaneous invoice item on a project. Only available for billable projects using a budget and the budget mode is either "detailed"
or "aggregated"
.
Example
{
"id": "387d498c-081a-4beb-a7b7-113d4f93dc80",
"fee": 5000,
"description": "Outsourced consulting",
"createdAt": "2022-03-18T16:56:43.052Z",
"project": {
"id": "095e0780-48bf-472c-8deb-2fc3ebc7d90c",
"name": "Vendor Portal",
"client": {
"id": "4cacdf11-71d1-4fbb-90ee-b091803581b0",
"name": "Joe's Shop"
}
},
"invoiceItem": {
"id": "aba04832-216c-463e-8998-c520948f707c",
"name": "Consulting Services"
}
}
Attributes
Name | Type | Description |
---|---|---|
id | uuid | The unique identifier for the object. |
fee | number | The total amount of the item. |
description | string | A description of the item being charged. |
createdAt | timestamp | The timestamp when the object was created. |
project | object | A simple object to the related project. See attributes. |
invoiceItem | object | A simple object to the related invoice item. See attributes. |
Project attributes
Name | Type | Description |
---|---|---|
id | uuid | The unique identifier for the object. |
name | string | The name of the project. |
client | object | A simple object to the related client. See attributes. |
Client attributes
Name | Type | Description |
---|---|---|
id | uuid | The unique identifier for the object. |
name | string | The name of the client. |
Invoice item attributes
Name | Type | Description |
---|---|---|
id | uuid | The unique identifier for the object. |
name | string | The name of the invoice item. |