Task¶
Project work item.
API Name: Task
Fields¶
| Field | Type | Description |
|---|---|---|
name |
varchar | Task name (required) |
status |
enum | Task status |
type |
enum | Type (Task/Milestone) |
priority |
enum | Priority |
progress |
int | Progress 0-100% (required) |
dateStart |
datetimeOptional | Start date |
dateEnd |
datetimeOptional | End date |
completedAt |
datetime | Completion date (readOnly) |
estimatedTime |
int | Estimated time |
estimatedTimeUnit |
enum | Time unit |
hours |
float | Worked hours |
points |
int | Points (0-100) |
group |
varchar | Group |
order |
int | Order (readOnly) |
hierarchicalLevel |
varchar | Hierarchy level (readOnly) |
dynamicTimeLine |
bool | Dynamic timeline (default: true) |
excludeWeekends |
bool | Exclude weekends |
dependencyType |
enum | Dependency type |
dependencyLag |
int | Dependency lag (default: 0) |
Enum Values¶
status:
| Value | Description | Color |
|---|---|---|
Not Started |
Not started | default |
Started |
Started | primary |
Completed |
Completed | success |
Canceled |
Canceled | info |
Deferred |
Deferred | default |
type:
| Value | Description | Color |
|---|---|---|
Task |
Task | default |
Milestone |
Milestone | warning |
priority:
| Value | Description | Color |
|---|---|---|
Low |
Low | default |
Normal |
Normal | default |
High |
High | warning |
Urgent |
Urgent | danger |
dependencyType:
| Value | Description |
|---|---|
|
No dependency |
FS |
Finish-to-Start |
SS |
Start-to-Start |
FF |
Finish-to-Finish |
SF |
Start-to-Finish |
estimatedTimeUnit:
| Value | Description |
|---|---|
hours |
Hours |
days |
Days |
Relationships¶
| Relationship | Type | Target Entity | Description |
|---|---|---|---|
parent |
belongsToParent | Project | Parent project |
parentTask |
belongsTo | Task | Parent task |
childrenTasks |
hasMany | Task | Sub-tasks |
projectGroup |
belongsTo | ProjectGroup | Group |
assignedUser |
belongsTo | User | Assigned user (required) |
projectManager |
belongsTo | User | Project manager |