GET/tasks/{id}/predecessors.json
Get Task Predecessors
A task which has predecessors cannot be completed unless they are first, so they are essentially blocking a task.
Path Params
- Name
id
- Type
- string
- required
- Description
Responses
- Code
- 200
- Type
- object
- Schema
- Description
- 200 Response
200 Response
application/json
{
"predecessors": [
{
"responsible-party-id": "",
"predecessorMust": "complete",
"name": "Testing subtasks",
"id": "1",
"hardness": "strong",
"projectType": "normal",
"projectId": "1",
"dependentCant": "complete",
"responsible-party-summary": "Anyone",
"responsible-party-names": ""
}
],
"STATUS": "OK"
}