GET workflows/{workflow_id}/output

Description:

get the specification of output of a workflow by id

URL pattern:

workflows/{workflow_id}/output

Formats:

json,xml

HTTP Method:

GET

Parameters:

none

Response:

{
	"workflow_outputs": {
		"id":1234,				// workflow id
		"output": {				// first output
			"name":"mesh_result",
			"friendly_name:"Mesh Result",
			"type":"file",
			"format":"paraview"
		},
		"output": {				// second output
			"name":"log_file",
			"friendly_name:"Log File",
			"type":"file",
			"format":"txt"
		}
		...
	}
}
  • No labels