GET workflow/{workflow_id}/input

Description:

get the specification of input of a workflow by id

URL pattern:

.../workflow/{workflow_id}/input

Formats:

json,xml

HTTP Method:

GET

Parameters:

none

Response:

{
	"workflow_inputs": {
		"id":1234,				// workflow id
		"input": {				// first input
			"name":"mach_num",
			"friendly_name:"Mach Number",
			"type":"integer"
		},
		"input": {				// second input
			"name":"mesh_file",
			"friendly_name:"Mesh File",
			"type":"file"
		}
		...
	}
}
  • No labels