Task
| Property | Type | Description | Information |
|---|---|---|---|
id | int | Identifier | Unique for single status. |
name | string | Name of task | -- |
project_id | int | Project ID of assigned task | -- |
goodday_id | string | GoodDay ID | -- |
parent_id | int | Parent task ID | -- |
status_id | int | Status ID of task | ID of selected Status |
description | string | Description of status | -- |
created_by_user_id | int | User ID | User |
assigned_to_user_id | int | User ID | User |
action_required_by_user_id | int | User ID | User |
start_date | date | Task start date | -- |
end_date | date | Task end date | -- |
deadline_date | date | Task deadline date | -- |
billable | bool | Billable flag | true for billable, false for not billable. |
priority | int | Priority of task | -- |
estimate | int | Estimate | -- |
progress | int | Progress of task | -- |
costs | int | Progress of task | -- |
billings | array | Progress of task | -- |
profit | int | Profit of task in percentage | -- |
work_time | array | Work times of task | -- |
closed_at | date | Task closed date | -- |
goodday_created_at | date | Task creation date in GoodDay | Date of Task creation in GoodDay. |
id_done | bool | Task is done flag | -- |
last_activity | dateTime | Last activity reported | Time of Task's last activity. |
created_at | date | Task creation date | Date of Task creation. |
updated_at | date | Task latest update date | Date of Task latest update. |
Example:
{
"id": 6,
"name": "kkk",
"project_id": 2,
"goodday_id": "HnFjN0",
"parent_id": null,
"status_id": 17,
"description": null,
"created_by_user_id": 3,
"assigned_to_user_id": 2,
"action_required_by_user_id": null,
"start_date": null,
"end_date": null,
"deadline_date": null,
"billable": true,
"priority": 5,
"estimate": 180,
"progress": null,
"costs": 150,
"billings": {
"to_invoice": 0,
"invoiced": 0
},
"profit": -100,
"work_time": {
"user_groups": {
"2": {
"users": [
{
"user_id": 2,
"time": 60
},
{
"user_id": 2,
"time": 120
}
],
"user_group_id": 2,
"percentage": 50,
"reported_time": 180
},
"1": {
"users": [
{
"user_id": 3,
"time": 180
}
],
"user_group_id": 1,
"percentage": 50,
"reported_time": 180
}
},
"reported_time": 360,
"estimated_time": 180,
"progress": 200
},
"closed_at": "2022-12-13T12:22:12+0100",
"goodday_created_at": "2022-12-02T08:45:04+0100",
"is_done": false,
"last_activity": "1970-01-01T00:00:01.000000Z",
"created_at": "2022-12-19T10:19:37+0100",
"updated_at": "2022-12-19T10:19:37+0100",
"_links": [
{
"href": "/api/v0/tasks/6",
"rel": "self",
"type": "GET"
}
]
}