CData Python Connector for QuickBooks Time

Build 24.0.9175

Projects

Create, Update and Query the Projects 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.
  • JobCodeId supports the =, IN operators.
  • ParentJobCodeId supports the = operator.
  • Name supports the = operator.
  • Active supports the = operator.
  • ByJobCodeAssignment supports the = operator.

For example, the following queries are processed server-side:

SELECT * FROM Projects
SELECT * FROM Projects WHERE Id = 2056676

Insert

When executing INSERT queries, specify the Name column. The columns that are not required can be inserted optionally. The following is an example of how to insert into this table:

INSERT INTO Projects (Name, Description) VALUES ('ProjectTest', 'This is a test project')

Update

When executing UPDATE queries, specify the Id in the WHERE clause. For example:

UPDATE Projects SET Status = 'complete' WHERE Id = '2062894' 

Columns

Name Type ReadOnly Description
Id [KEY] Integer True

ID of this project.

JobCodeId Integer False

The jobcode that represents the project for time tracking.

ParentJobCodeId Integer False

Id of the project jobcode's parent. 0 if it's top-level.

Name String False

Name of project. Limited to 64 characters.

Description String False

Description text associated with project. Limited to 300 characters.

Status String False

Status of project.

使用できる値は次のとおりです。not_started, in_progress, complete

StartDate Datetime False

YYYY-MM-DD formatted date string. Must be before due date if one is defined.

DueDate Datetime False

YYYY-MM-DD formatted date string. Must be after the start date if one is defined.

CompletedDate Datetime False

YYYY-MM-DD formatted date string. Must be after the start date if one is defined.

Active Boolean False

True or false. If false, the project is considered deleted.

LastModified Datetime True

Date/time when this project was last modified, in ISO 8601 format.

Created Datetime True

Date/time when this project was created, in ISO 8601 format.

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
ByJobCodeAssignment Boolean

If specified, only projects with a jobcode_id the user is assigned to will be returned.

Copyright (c) 2025 CData Software, Inc. - All rights reserved.
Build 24.0.9175