View Task Handoff Chain by Workspace, Project and Task Codes
get
/api/restapi/workManagerTaskDependency/workspace/{workspaceCode}/project/{projectCode}/task/{tasksCode}
Send a request to this end point to view the entire task handoff chain by the specified workspace, project and task codes of a task.
Request
Path Parameters
-
projectCode(required): string
Project Code for which Task Handoffs to be found.
-
tasksCode(required): string
Task Code for which Task Handoffs to be found.
-
workspaceCode(required): string
Workspace Code for which Task Handoffs to be found.
There's no request body for this operation.
Back to TopResponse
Supported Media Types
- application/json
200 Response
Successful operation
Root Schema : List<ApiEntityWorkManagerTaskDependency>
Type:
array
Title:
Show Source
List<ApiEntityWorkManagerTaskDependency>
-
Array of:
object ApiEntityWorkManagerTaskDependency
Title:
ApiEntityWorkManagerTaskDependency
Nested Schema : ApiEntityWorkManagerTaskDependency
Type:
object
Title:
Show Source
ApiEntityWorkManagerTaskDependency
-
lag: number
(double)
Minimum Value:
0
The amount of time a successor task is required to be delayed with respect to a predecessor task in a hand-off, in hours. -
link: string
(url)
The self-link to the object. This field is populated only in the responses generated by the batch create APIs.
-
predecessorTaskCompany: string
Company assigned to the predecessor Task.
-
predecessorTaskDueDate: string
(date-time)
Last committed due date of the predecessor Task.
-
predecessorTaskId: integer
(int64)
The unique identifier of a predecessor task.
-
predecessorTaskName: string
Minimum Length:
1
Maximum Length:255
Task name of the predecessor Task. -
predecessorTaskStatus: string
Allowed Values:
[ "NEW", "PENDING", "COMMITTED", "COMPLETED" ]
Task status of the predecessor Task. -
projectId: integer
(int64)
The unique identifier of the project to which the dependency belongs.
-
slack: number
(double)
Minimum Value:
0
The amount of time between a predecessor task's due date and its successor task's start date. This is a read-only field. -
successorTaskCompany: string
Company assigned to the successor Task.
-
successorTaskDueDate: string
(date-time)
Last committed due date of the successor Task.
-
successorTaskId: integer
(int64)
The unique identifier of a successor task.
-
successorTaskName: string
Minimum Length:
1
Maximum Length:255
Task name of the successor Task. -
successorTaskStatus: string
Allowed Values:
[ "NEW", "PENDING", "COMMITTED", "COMPLETED" ]
Task status of the successor Task. -
type: string
Allowed Values:
[ "FINISH_TO_START", "START_TO_START", "FINISH_TO_FINISH" ]
The hand-off dependency type. The valid value is Finish to Start. -
updateDate: string
(date-time)
Date when the record was last updated.
-
useCalendar: boolean
Allows user to set whether or not lag can fall on project calendar's nonwork days.
-
workManagerTaskDependencyId: integer
(int64)
The system-generated identifier of a work manager task dependency. This value should not be provided in create operation request data, however, it is required for update requests.
204 Response
Successful operation with no content.
404 Response
The requested Task Handoffs does not exist or you do not have access to it.