ProjectNotes
Create, Update and Query the Project Notes in QuickBooks Time.
Table Specific Information
Select
The 本製品 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 本製品.- Id supports the =, IN operators.
- UserId supports the =, IN operators.
- ProjectId supports the = operator.
- Active supports the = operator.
- LastModified supports the <, <=, >, >= operators.
- SupplementalData supports the = operator.
For example, the following queries are processed server-side:
SELECT * FROM ProjectNotes SELECT * FROM ProjectNotes WHERE ProjectId = 203282
Insert
When executing INSERT queries, specify the ProjectId and Note 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 ProjectNotes (ProjectId, Note) VALUES (203282, 'Test note')
Update
When executing UPDATE queries, specify the Id in the WHERE clause.
For example:
UPDATE ProjectNotes SET Note = 'updated value' WHERE Id = '1675236'
Columns
Name | Type | ReadOnly | Description |
Id [KEY] | Integer | True |
Id of the Project Note. |
ProjectId | Integer | True |
Id of the associated Project. |
UserId | Integer | True |
Id of the associated user. |
Note | String | False |
Content of note. |
Active | Boolean | False |
Boolean value. If false, this project note is considered archive. |
Created | Datetime | True |
Date/time when this project note was created. |
LastModified | Datetime | True |
Date/time when this project note was last modified. |
Mentions | String | False |
Mentions. |
Files | String | True |
List of ids for file attached to this note. |
LinkedObjects | String | False |
A key/value map of all the objects linked to this project and the corresponding object ids. |
Pseudo-Columns
SELECT ステートメントのWHERE 句では、疑似カラムフィールドを使用して、データソースから返されるタプルを詳細に制御することができます。
Name | Type | Description |
SupplementalData | Boolean |
Default value is 'yes'. Indicates whether supplemental data should be specified. |