Workflow Parameter Values
The Workflow Parameter Values is an XML document that contains the input parameters of a workflow instance. It is a set of name/value pairs where the name must match one of the parameters defined in the associated workflow. The following table shows the Workflow Parameter Values parameters.
Name |
Data type |
Description |
Required |
---|---|---|---|
name |
String |
The name of the parameter, as defined in the workflow |
Yes |
value |
String |
The value of the parameter, as defined in the workflow |
No |
XML Example
In this example, the host
parameter
is given the value "mycloud.com". The username
parameter is given the value "admin". And the password
parameter is given the value "password123."
<WorkflowParameterValues> <Value name="host" value="mycloud.com" /> <Value name="username" value="admin" /> <Value name="password" value="password123" /> </WorkflowParameterValues>