Summary
          Get Iterations of a Job's Task
          Description
          Get iterations of a Job's Task by Job ID and Task name.
          Route
          GET /workflow_engine/getTaskIterations/:job_id/:task
          Roles
          
            admin
apiread
          
          Parameters
          
            DetailsExampleSchema
          
          
            
              
                | Name | Type | Required | Description | 
            
            
              
    | job_id | string | yes | Job ID to get iterations of its Task. | 
    | task | string | yes | Four digit hexadecimal task id to get task iterations from | 
            
          
          
          
            Copied to Clipboard
            
            {
  "type": "object",
  "properties": {},
  "required": [],
  "additionalProperties": false
}
           
          Return
          
            DetailsExampleSchema
          
          
            
              
                | Name | Type | Description | 
            
            
              
                | task_iterations | array | Iterations of a Job's Task. | 
            
          
          
            Copied to Clipboard
            
            [
  {
    "_id": "4321abcdef694aa79dae47ad",
    "job": {
      "_id": "5cb7b531d06cceb89fd21b1c",
      "task": "12ab",
      "ancestors": [
        "4321abcdef694aa79dae47ad",
        "5cb7b531d06cceb89fd21b1c"
      ],
      "name": false,
      "description": "sit"
    },
    "variables": {
      "incoming": {
        "inputVariable": "inputValue"
      },
      "outgoing": {
        "outputVariable": null
      },
      "error": "",
      "decorators": [
        {
          "type": "encryption",
          "pointer": "et mollit in esse sed"
        },
        {
          "type": "encryption",
          "pointer": "Lorem"
        }
      ]
    },
    "metrics": {
      "retrying": true
    },
    "name": false,
    "summary": 67987719,
    "displayName": true,
    "type": "culpa reprehenderit sit",
    "x": true,
    "y": true
  }
]
           
          
            Copied to Clipboard
            
            {
  "type": "array",
  "items": {
    "$ref": "taskDocument"
  }
}