Standard Tasks
- Get Standard Task Object Definition
- Query and List Standard Tasks
- Query and List Standard Tasks (Legacy)
- Get Standard Task
- Get Standard Task by ID
- Create Standard Task
- Update Standard Task
- Delete Standard Task
You set up a catalog of standard tasks to use as templates when creating new tasks.
Standard tasks are independent of projects. Your standard task can link to multiple standard cost types. When you create a task based on a standard task like this, the corresponding cost types are created for your task.
Note: Task corresponds with cost code in the work breakdown structure in the Construction industry.
Get Standard Task Object Definition
lookup
List all the fields and relationships for the standard task object:
Parameters
Name | Required | Type | Description |
---|---|---|---|
object | Required | string | Use STANDARDTASK |
Query and List Standard Tasks
query
List the record number and name for each standard task:
Parameters
Name | Required | Type | Description |
---|---|---|---|
object | Required | string | Use STANDARDTASK |
filter | Optional | object | Filter expression to limit the response to only objects that match the expression. Check the value of a single field using operators such as equalto/like, or multiple fields using and/or. Query fields on related objects using the dot operator (for example, VENDOR.CREDITLIMIT on APBILL). |
select | Required | sequence | The names of the fields that you want included in the response, and an optional aggregate function such as count or sum . Returning all fields is not supported. |
orderby | Optional | object | Provide an order element with a field name and choose an ascending or descending sort order, for example: <order> |
options | Optional | object | Query options:
|
pagesize | Optional | integer | Maximum number of matching objects to return in the response, between 1 and 2000 items (Default: 100 ) |
offset | Optional | integer | Point at which to start indexing into records (Default: 0 ) |
Query and List Standard Tasks (Legacy)
readByQuery
Parameters
Name | Required | Type | Description |
---|---|---|---|
object | Required | string | Use STANDARDTASK |
fields | Optional | string | Comma-separated list of fields on the object to list. For best performance and predictability, limit the number of fields. To return all fields, omit the element or provide * for the value. |
query | Required | string | SQL-like query based on fields on the object. The following operators are supported: < , > , >= , <= , = , like , not like , in , not in , IS NOT NULL , IS NULL , AND , OR . Illegal XML characters must be properly encoded, and single quotes must be escaped with backslashes ('Jane\'s Deli' ). Joins are not supported. |
pagesize | Optional | integer | Custom page size between 1 and 1000 items (Default: 100 ) |
Get Standard Task
read
Parameters
Name | Required | Type | Description |
---|---|---|---|
object | Required | string | Use STANDARDTASK |
keys | Required | string | Comma-separated list of RECORDNO of the standard task to get |
fields | Optional | string | Comma-separated list of fields on the object to get. To return all fields, omit the element or provide * for the value.For best performance and predictability, limit the number of fields. |
returnFormat | Optional | string | Data format for the response body:
|
Get Standard Task by ID
readByName
Parameters
Name | Required | Type | Description |
---|---|---|---|
object | Required | string | Use STANDARDTASK |
keys | Required | string | Comma-separated list of ID of the standard task to get |
fields | Optional | string | Comma-separated list of fields on the object to get. To return all fields, omit the element or provide * for the value.For best performance and predictability, limit the number of fields. |
returnFormat | Optional | string | Data format for the response body:
|
Create Standard Task
create
Parameters
Name | Required | Type | Description |
---|---|---|---|
STANDARDTASK | Required | object | Object to create |
STANDARDTASK
Name | Required | Type | Description |
---|---|---|---|
STANDARDTASKID | Required | string | Unique ID for the standard task. Use 20 or fewer characters. |
NAME | Optional | string | Name for the standard task. Does not have to be unique. Use 200 or fewer characters. |
DESCRIPTION | Optional | string | Description for the standard task. Use 1000 or fewer characters. |
PRODUCTIONUNITDESC | Optional | string | Production unit description, such as cubic yards or window assembly. Free form field with 30 or fewer characters. |
ITEMID | Optional | string | ID of the item. Only Non-Inventory and Non-Inventory (Sales only) items are valid. Required if BILLABLE is true . |
BILLABLE | Optional | boolean | Billable. Use true for yes, false for no. (Default: false ) |
ISMILESTONE | Optional | boolean | Is this a milestone? Use true for yes, false for no. (Default: false ) |
UTILIZED | Optional | boolean | Utilized. Use true for yes, false for no. (Default: false ) |
PRIORITY | Optional | string | Priority |
TIMETYPENAME | Optional | string | Name of the time type to use. |
TASKNO | Optional | string | Work breakdown structure code. Free form field with 8 or fewer characters. |
PARENTKEY | Optional | integer | Unique ID of the parent standard task |
CLASSID | Optional | string | Class ID |
STANDARDTASKSTANDARDCOSTTYPES | Optional | STANDARDTASKSTANDARDCOSTTYPE[1..n] |
Existing standard cost types to associate with the standard task |
STATUS | Optional | string | Status. Use active or inactive . |
customfields | optional | customfield[0…n] | Custom fields |
STANDARDTASKSTANDARDCOSTTYPE
Name | Required | Type | Description |
---|---|---|---|
STANDARDCOSTTYPEID | Required | string | Unique ID for the standard cost type. |
customfield
Name | Required | Type | Description |
---|---|---|---|
customfieldname | Optional | string | Custom field ID |
customfieldvalue | Optional | varies | Custom field value. For a multi-pick-list custom field, implode multiple field values with #~# . |
Update Standard Task
When updating a standard task to modify the associated cost types, be aware that it is a complete replacement of the existing set. So, to add a cost type, supply all the original ones and the new one. To delete a cost type, supply only the ones you want to keep. To remove all cost types, provide an empty set.
update
Parameters
Name | Required | Type | Description |
---|---|---|---|
STANDARDTASK | Required | object | Object to update |
STANDARDTASK
Name | Required | Type | Description |
---|---|---|---|
STANDARDTASKID | Optional | string | Unique ID of the standard task to update. Required if not using RECORDNO . |
RECORDNO | Optional | integer | Record number of the standard task to update. Required if not using STANDARDTASKID . |
NAME | Optional | string | Name for the standard task. Does not have to be unique. Use 200 or fewer characters. |
DESCRIPTION | Optional | string | Description for the standard task. Use 1000 or fewer characters. |
PRODUCTIONUNITDESC | Optional | string | Production unit description. Free form field with 30 or fewer characters. |
ITEMID | Optional | string | ID of the item. Only Non-Inventory and Non-Inventory (Sales only) items are valid. Required if BILLABLE is true . |
BILLABLE | Optional | boolean | Billable. Use true for yes, false for no. (Default: false ) |
ISMILESTONE | Optional | boolean | Is this a milestone? Use true for yes, false for no. (Default: false ) |
UTILIZED | Optional | boolean | Utilized. Use true for yes, false for no. (Default: false ) |
PRIORITY | Optional | string | Priority |
TIMETYPENAME | Optional | string | Name of the time type to use. |
TASKNO | Optional | string | Work breakdown structure code. Free form field with 8 or fewer characters. |
PARENTKEY | Optional | integer | Unique ID of the parent standard task |
CLASSID | Optional | string | Class ID |
STANDARDTASKSTANDARDCOSTTYPES | Optional | STANDARDTASKSTANDARDCOSTTYPE[1..n] |
Existing standard cost types to associate with the standard task. To add a cost type, supply all the original ones and the new one. To delete a cost type, supply only the ones you want to keep. |
STATUS | Optional | string | Status. Use active or inactive . |
customfields | optional | customfield[0…n] | Custom fields |
STANDARDTASKSTANDARDCOSTTYPE
Name | Required | Type | Description |
---|---|---|---|
STANDARDCOSTTYPEID | Required | string | Unique ID for the standard cost type. |
customfield
Name | Required | Type | Description |
---|---|---|---|
customfieldname | Optional | string | Custom field ID |
customfieldvalue | Optional | varies | Custom field value. For a multi-pick-list custom field, implode multiple field values with #~# . |
Delete Standard Task
delete
Parameters
Name | Required | Type | Description |
---|---|---|---|
object | Required | string | Use STANDARDTASK |
keys | Required | string | Comma-separated list of RECORDNO of the standard task to delete |