check the detailed running status for a specific workflow

This endpoint indicates—for a given workflow—the count of work orders corresponding to each execution status.

Note: The default format for the response is XML format. To return a response in JSON format, add &format=json to the request.

Usage

The required path parameter is workflow_id.

Request:
http://Orchestrator_IP_address/aspera/orchestrator/api/workflow_details/workflow_id?login=admin

For example:

http://Orchestrator_IP_address/aspera/orchestrator/api/workflow_details/13?login=admin

Response example:

Note: Only the statuses that are encountered are reported. For example, if no work orders have failed for that workflow, no lines will be reported for that status.
<?xml version="1.0"?>
<workflows time="2012-01-25 07:11:52 UTC" action="details"  id="13">
  <workflow id="13" name="test mapping" >
      <status type="Complete" count="1" last_activity="2012-01-23 19:11:33"/>
      <status type="Failed" count="1764" last_activity="2012-01-25 07:11:15"/>
      <status type="In Progress" count="2" last_activity="2012-01-25 07:11:29"/>
      <status type="Error" count="1" last_activity="2012-01-23 19:05:51"/>
  </workflow>
</workflows>