Task
The representation of a task is called a Task object. Tasks are identified by a unique incremental ID.
Attribute
Type
Description
id
integer
Unique identifier for the task.
projet_id
integer
Project ID linked to the task.
active
integer
Possible values are :
0: Task is inactive
1: Task is active
creation_date
date
Creation date.
title
string
Title of task.
start_date
date
Starting date of task.
end_date
date
Ending date of task
status
integer
Possible values are :
1: To plan
2: To do
3: In progress
4: To test
5: Done
time_estimated
number
Time estimated to complete the task.
time_spent
number
Time spent on the task.
description
string
description of the task.
comments
array
Comments linked to the task (user_id,date,comment)
Last updated