Read a simplified list of project tasks based on project status.
|
isCompletedStatus
boolean
Denotes if the project is currently in the completed status. |
|
isEndDateActualSet
boolean
Denotes if the project currently has it's end date actual set. |
None.
|
ID
globally unique identifier
ID of the Task. |
|
AncestorID
globally unique identifier
ID of the ancestor for a task; department, organization, or individual. |
|
ParentID
globally unique identifier
ID of the project above a task. |
|
Name
string
Name of the task. (Max length 255 characters) |
|
Priority
integer
Priority of the task. Valid inputs are: 1= low, 2 = normal, 3 = high, or null. |
|
Rank
integer
Rank of the task. |
|
RankPath
Collection of byte
Current rank of the given task in a byte array. |
|
RankOrder
string
RankOrder to sort rank in the format .0001.0001.0001 (This always returns null when reading a single task by ID.) |
|
DisplayRank
string
Rank that is displayed |
|
HoursActual
decimal number
Number of actual hours this task took. |
|
StartDateActual
string
Date this task was actually started. |
|
EndDateActual
string
Date this task was completed. |
|
SumHoursActual
decimal number
Sum of the actual number of hours this task took. |
|
SumHoursProjected
decimal number
Sum of the number of hours this task is projected to take. |
|
EndDate
string
Date the task actually ended or projected to end. |
|
StartDate
string
Date the task actually started or projected to start. |
|
ColorName
string
Name of the color for the task. |
|
MileStone
boolean
Denotes if this is a milestone task or not. |
|
Description
string
Task description |
|
Level
integer
Indention level on the task. |
|
EndDateProjected
string
Date the task is expected to be finished. |
|
StartDateProjected
string
Date the task is expected to start. |
<ReportTask xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://col4.com/api/v4"> <ID>132698c8-4c35-48bd-805b-309cbedb0b7c</ID> <AncestorID>26b6c8ad-192a-4d0e-a3c3-f1603da38ab3</AncestorID> <ParentID>56832d2f-fd33-441e-b023-325575bf819a</ParentID> <Name>sample string 1</Name> <Priority>1</Priority> <Rank>1</Rank> <RankPath>QEA=</RankPath> <RankOrder>sample string 2</RankOrder> <DisplayRank>sample string 3</DisplayRank> <HoursActual>1</HoursActual> <SumHoursActual>1</SumHoursActual> <SumHoursProjected>1</SumHoursProjected> <ColorName>sample string 8</ColorName> <MileStone>true</MileStone> <Description>sample string 9</Description> <Level>1</Level> </ReportTask>
{
"ID": "132698c8-4c35-48bd-805b-309cbedb0b7c",
"AncestorID": "26b6c8ad-192a-4d0e-a3c3-f1603da38ab3",
"ParentID": "56832d2f-fd33-441e-b023-325575bf819a",
"Name": "sample string 1",
"Priority": 1,
"Rank": 1,
"RankPath": "QEA=",
"RankOrder": "sample string 2",
"DisplayRank": "sample string 3",
"HoursActual": 1.0,
"SumHoursActual": 1.0,
"SumHoursProjected": 1.0,
"ColorName": "sample string 8",
"MileStone": true,
"Description": "sample string 9",
"Level": 1
}