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."
<?xml version="1.0" encoding="UTF-8" ?> <WorkflowParameterValues xmlns="http://qradar.ibm.com/UniversalCloudRESTAPI/ WorkflowParameterValues/V1"> <Value name="host" value="" /> <Value name="username" value="" /> <Value name="password" value="" /> </WorkflowParameterValues>