GET/tasks/{id}/dependencies.json

Retrieve Task Dependencies

This will list any other Tasks that rely on this task to be completed first.


Path Params

  • Name
    id
    Type
    string
    required
    Description

Responses

  • Code
    200
    Type
    object
    Schema
    Description
    200 Response

Examples

200 Response

application/json
{
  "dependents": [
    {
      "responsible-party-id": "12345",
      "predecessorMust": "complete",
      "name": "my task",
      "id": "123456789",
      "hardness": "strong",
      "projectId": "54321",
      "dependentCant": "complete",
      "responsible-party-summary": "Daniel M.",
      "responsible-party-names": "Daniel M."
    }
  ],
  "STATUS": "OK"
}