EstimateItems
Create, Update and Query the Estimate Item 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.
- EstimateId 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 EstimateItems SELECT * FROM EstimateItems WHERE Id = '11531340'
Insert
When executing INSERT queries, specify the EstimateId, Type and TypeId 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 EstimateItems (EstimateId, Type, TypeId) VALUES (47482, 'tag_clouds', 15011650)
Update
When executing UPDATE queries, specify the Id in the WHERE clause.
For example:
UPDATE EstimateItems SET EstimatedSeconds = 2 WHERE Id = '11531340'
Columns
| Name | Type | ReadOnly | Description |
| Id [KEY] | Integer | True |
Id of the Estimate item. |
| EstimateId | Integer | False |
The estimate this estimate item belongs to. |
| EstimatedSeconds | Integer | False |
The estimated number of seconds. |
| 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. |
| Type | String | False |
The estimate item type. One of 'none' or 'tag_clouds'. NOTE: A type of 'tag_clouds' should be 'customfields' instead. This will be corrected soon. |
| TypeId | Integer | False |
The customfield item id if type is 'tag_clouds'. |
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. |