Estimates
Create, Update and Query the Estimates in QuickBooks Time.
Table Specific Information
Select
The server uses the QuickBooks Time API to process WHERE clause conditions built with the following columns and operators. The rest of the filter is executed client-side within the server.- Id supports the =, IN operators.
- Active supports the = operator.
- LastModified supports the <, <=, >, >= operators.
- SupplementalData supports the = operator.
For example, the following queries are processed server-side:
SELECT * FROM Estimates SELECT * FROM Estimates WHERE Id = '11531340'
Insert
When executing INSERT queries, specify the ProjectId and EstimatedBy columns. The columns that are not required can be inserted optionally. The following is an example of how to insert into this table:
INSERT INTO Estimates (ProjectId, EstimatedBy) VALUES (2064876, 'none')
Update
When executing UPDATE queries, specify the Id in the WHERE clause.
For example:
UPDATE Estimates SET Active = true WHERE Id = '11531340'
Columns
| Name | Type | ReadOnly | Description |
| Id [KEY] | Integer | True |
Id of the Estimate. |
| ProjectId | Integer | False |
Id of the associated Project. |
| EstimatedBy | String | False |
The estimate type. Values are one of 'none' or 'customfields'. |
| EstimateById | Integer | False |
The customfield id if estimate_by value is 'customfields'. |
| Active | Boolean | False |
Boolean value. If false, this estimate is considered deleted. |
| Created | Datetime | True |
Date/time when this estimate was created. |
| LastModified | Datetime | True |
Date/time when this estimate was last modified. |
Pseudo-Columns
Pseudo column fields are used in the WHERE clause of SELECT statements and offer a more granular control over the tuples that are returned from the data source.
| Name | Type | Description |
| SupplementalData | Boolean |
Default value is 'yes'. Indicates whether supplemental data should be specified. |