Use standard tasks to create a catalog (library) of definitions that can be used to populate new project tasks with specific values, improving consistency across an organization.
Returns up to 100 object references from the collection with a key, ID, and link for each standard task. This operation is mostly for use in testing; use the query service to find objects that meet certain criteria and to specify properties that are returned.
OK
Bad Request
{- "ia::result": [
- {
- "key": "1",
- "id": "1-000",
- "href": "/objects/construction/standard-task/1"
}, - {
- "key": "2",
- "id": "3-010",
- "href": "/objects/construction/standard-task/2"
}, - {
- "key": "3",
- "id": "1-020",
- "href": "/objects/construction/standard-task/3"
}
], - "ia::meta": {
- "totalCount": 3,
- "start": 1,
- "pageSize": 100,
- "next": null,
- "previous": null
}
}
Creates a new standard task.
Standard task to create
id required | string Unique identifier of the standard task. Example: "1-010" | ||||
name required | string Name of the standard task. Example: "Summary of Work" | ||||
description | string Description of the standard task. Example: "Summary of Work" | ||||
productionUnitDescription | string Production unit description of the standard task. Example: "days" | ||||
status | string Default: "active" Object status. Active objects are fully functional. Inactive objects are essentially hidden and cannot be used or referenced. Example: "active" | ||||
object Reference to an item. | |||||
| |||||
isBillable | boolean Default: false Set to Example: true | ||||
isMilestone | boolean Default: false Set to Example: false | ||||
isUtilized | boolean Default: false Set to `true if tasks created from this standard task are utilized. A utilized task indicates progress on a customer project or internal project. Example: true | ||||
priority | number Priority of tasks created from the standard task. Example: "1" | ||||
object Time type of the standard task. | |||||
| |||||
wbsCode | string Work breakdown structure code of the standard task. Example: "1" | ||||
object Reference to the parent standard task of this standard task. | |||||
| |||||
object | |||||
| |||||
Array of objects Array of standard cost types. | |||||
Array
|
Created
Bad Request
{- "id": "1-010",
- "name": "Summary of Work",
- "description": "Summary of Work",
- "status": "active",
- "isBillable": false,
- "isMilestone": false,
- "isUtilized": false,
- "parent": {
- "id": "1-000"
}, - "standardCostTypes": [
- {
- "id": "EQ"
}, - {
- "id": "EQ-Owned"
}, - {
- "id": "EQ-Rental"
}, - {
- "id": "LAB"
}, - {
- "id": "LAB-OT"
}, - {
- "id": "LAB-REG"
}, - {
- "id": "LAB-SALARY"
}, - {
- "id": "LAB-BURDEN"
}, - {
- "id": "MAT"
}, - {
- "id": "OH"
}, - {
- "id": "OTH"
}
]
}
{- "ia::result": {
- "key": "2",
- "id": "1-010",
- "href": "/objects/construction/standard-task/2"
}, - "ia::meta": {
- "totalCount": 1,
- "totalSuccess": 1,
- "totalError": 0
}
}
Returns detailed information for a specified standard task.
key required | string System-assigned key for the standard task. Example: 312 |
OK
Bad Request
{- "ia::result": {
- "key": "312",
- "id": "1-010",
- "name": "Summary of Work",
- "description": "General Conditions: Summary of Work",
- "productionUnitDescription": "days",
- "status": "active",
- "item": {
- "key": "318",
- "id": "Other",
- "name": "Other",
- "href": "/objects/inventory-control/item/318"
}, - "isBillable": false,
- "isMilestone": false,
- "isUtilized": true,
- "timeType": {
- "key": "11",
- "name": "Design"
}, - "wbsCode": "S",
- "parent": {
- "key": "1",
- "id": "1-000",
- "name": "GENERAL CONDITIONS",
- "href": "/objects/construction/standard-task/1"
}, - "class": {
- "key": "8",
- "id": "CON",
- "name": "Construction",
- "href": "/objects/company-config/class/8"
}, - "audit": {
- "createdDateTime": "2021-11-23T23:57:52Z",
- "modifiedDateTime": "2021-11-29T23:15:38Z",
- "createdBy": "1",
- "modifiedBy": "1"
}, - "standardCostTypes": [
- {
- "key": "1",
- "id": "EQ",
- "href": "/objects/construction/standard-cost-type/1"
}, - {
- "key": "3",
- "id": "EQ-Owned",
- "href": "/objects/construction/standard-cost-type/3"
}
], - "href": "/objects/construction/standard-task/312"
}, - "ia::meta": {
- "totalCount": 1,
- "totalSuccess": 1,
- "totalError": 0
}
}
Updates an existing standard task by setting field values. Any fields not provided remain unchanged.
key required | string System-assigned key for the standard task. Example: 312 |
name | string Name of the standard task. Example: "Summary of Work" | ||||
description | string Description of the standard task. Example: "Summary of Work" | ||||
productionUnitDescription | string Production unit description of the standard task. Example: "days" | ||||
status | string Default: "active" Object status. Active objects are fully functional. Inactive objects are essentially hidden and cannot be used or referenced. Example: "active" | ||||
object Reference to an item. | |||||
| |||||
isBillable | boolean Default: false Set to Example: true | ||||
isMilestone | boolean Default: false Set to Example: false | ||||
isUtilized | boolean Default: false Set to `true if tasks created from this standard task are utilized. A utilized task indicates progress on a customer project or internal project. Example: true | ||||
priority | number Priority of tasks created from the standard task. Example: "1" | ||||
object Time type of the standard task. | |||||
| |||||
wbsCode | string Work breakdown structure code of the standard task. Example: "1" | ||||
object Reference to the parent standard task of this standard task. | |||||
| |||||
object | |||||
| |||||
Array of objects Array of standard cost types. | |||||
Array
|
OK
Bad Request
{- "description": "General Conditions: Summary of Work",
- "productionUnitDescription": "days",
- "isUtilized": true,
- "class": {
- "id": "3"
}, - "standardCostTypes": [
- {
- "id": "SUB"
}
]
}
{- "ia::result": {
- "key": "2",
- "id": "1-010",
- "href": "/objects/construction/standard-task/2"
}, - "ia::meta": {
- "totalCount": 1,
- "totalSuccess": 1,
- "totalError": 0
}
}
Deletes a standard task.
key required | string System-assigned key for the standard task. Example: 312 |
No Content
Bad Request
{- "ia::result": {
- "ia::error": {
- "code": "invalidRequest",
- "message": "A POST request requires a payload",
- "errorId": "REST-1028",
- "additionalInfo": {
- "messageId": "IA.REQUEST_REQUIRES_A_PAYLOAD",
- "placeholders": {
- "OPERATION": "POST"
}, - "propertySet": { }
}, - "supportId": "Kxi78%7EZuyXBDEGVHD2UmO1phYXDQAAAAo"
}
}, - "ia::meta": {
- "totalCount": 1,
- "totalSuccess": 0,
- "totalError": 1
}
}