Scheduled invoicing for a fixed fee project. This is only available for projects that have a billing type of "fixed"
or "fixed_recurring"
.
Example
{
"id": "bb89d30e-9fdd-4fad-bb5a-644ff2026b22",
"typeId": "recurring",
"date": "2022-03-01",
"quantity": 50,
"rate": 100,
"fee": 5000,
"name": "March 2022",
"invoiced": false,
"createdAt": "2022-03-18T15:13:03.724Z",
"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. |
typeId | string | The type of the milestone. Can be either "recurring" (Recurring) or "custom" (Custom) depending on how it was generated. |
date | date | The date of the milestone. Will be in the form YYYY-MM-DD. |
quantity | number | An optional quantity applied for calculating the fee . |
rate | number | An optional rate applied for calculating the fee . |
fee | number | The total amount for the milestone. |
name | string | The name of the milestone. |
invoiced | boolean | Flag to indicate if the milestone has been invoiced. |
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. |