Summary
          Get a Job's Visualization Data
          Description
          Get a Job's visualization data by Job ID.
          Route
          GET /workflow_engine/jobs/visdata/:job_id
          Roles
          
            admin
engineering
support
apiread
          
          Parameters
          
            DetailsExampleSchema
          
          
            
              
                | Name | Type | Required | Description | 
            
            
              
    | job_id | string | yes | ID of the Job to request visualization data. | 
            
          
          
          
            Copied to Clipboard
            
            {
  "type": "object",
  "properties": {},
  "required": [],
  "additionalProperties": false
}
           
          Return
          
            DetailsExampleSchema
          
          
            
              
                | Name | Type | Description | 
            
            
              
                | job_visData | object | Visualization data of the Job. | 
            
          
          
            Copied to Clipboard
            
            {
  "transitions": {
    "workflow_start": [
      "abcd"
    ],
    "abcd": [
      "workflow_end"
    ]
  },
  "job": {
    "_id": "4430ceadbd694aa79994ad47",
    "name": "8917Test2",
    "tasks": {
      "workflow_start": {
        "name": "workflow_start",
        "groups": [],
        "x": 0.08412582297000731,
        "y": 0.4968944099378882,
        "status": "complete",
        "metrics": {
          "owner": "5a3496c64da02d9dfa0b2f91",
          "start_time": 1555430149763,
          "end_time": 1555430169683,
          "run_time": 75069184,
          "finish_state": "error",
          "server_id": "ac:de:48:00:11:22:3000",
          "app": {
            "id": "WorkFlowEngine",
            "version": "1.2.3"
          }
        }
      },
      "workflow_end": {
        "name": "workflow_end",
        "groups": [],
        "x": 0.08412582297000731,
        "y": 0.4968944099378882,
        "status": "complete",
        "metrics": {
          "owner": "5a3496c64da02d9dfa0b2f91",
          "start_time": 1555430149763,
          "end_time": 1555430169683,
          "run_time": 75069184,
          "finish_state": "canceled",
          "server_id": "ac:de:48:00:11:22:3000",
          "app": {
            "id": "MOP",
            "version": "1.2.3"
          }
        }
      }
    },
    "transitions": {
      "workflow_start": {
        "6a90": {
          "type": "standard",
          "state": "success"
        }
      },
      "6a90": {
        "workflow_end": {
          "type": "standard",
          "state": "success"
        }
      }
    },
    "font_size": 12,
    "created": "2018-07-26T19:37:05.000Z",
    "created_by": "admin@pronghorn",
    "last_updated": "2018-08-02T15:56:12.912Z",
    "last_updated_by": "5b3496d74da02e9dfa0b2e91",
    "groups": [],
    "type": "automation",
    "watchers": [
      "4321abcdef694aa79dae47ad",
      "4321abcdef694aa79dae47ad",
      "4321abcdef694aa79dae47ad"
    ],
    "metrics": {
      "owner": "Pronghorn",
      "start_time": 1555430149763,
      "end_time": 1555430169683,
      "run_time": 75069184,
      "finish_state": "complete",
      "server_id": "ac:de:48:00:11:22:3000",
      "app": {
        "id": "MOP",
        "version": "3.2.1"
      }
    },
    "status": "error",
    "locked": true,
    "error": [
      {
        "task": "job",
        "message": "No available transitions found from completed task(s)",
        "timestamp": 1555471643117
      },
      {
        "task": "job",
        "message": "No available transitions found from completed task(s)",
        "timestamp": 1555471643117
      },
      {
        "task": "job",
        "message": "No available transitions found from completed task(s)",
        "timestamp": 1555471643117
      },
      {
        "task": "job",
        "message": "No available transitions found from completed task(s)",
        "timestamp": 1555471643117
      },
      {
        "task": "job",
        "message": "No available transitions found from completed task(s)",
        "timestamp": 1555471643117
      }
    ]
  }
}
           
          
            Copied to Clipboard
            
            {
  "type": "object",
  "properties": {
    "transitions": {
      "type": "object",
      "additionalProperties": {
        "type": "array",
        "items": {
          "$ref": "wfEngineCommon#/definitions/workflowTaskId"
        }
      },
      "examples": [
        {
          "workflow_start": [
            "abcd"
          ],
          "abcd": [
            "workflow_end"
          ]
        }
      ]
    },
    "job": {
      "$ref": "jobsDocument"
    }
  }
}