| IDRARestServerWorkflowProcessStart Method |
Manually start a workflow process
UriTemplate: /dra/workitems/post
Namespace:
NetIQ.DRA.RestServiceLibrary
Assembly:
NetIQ.DRA.RestServiceLibrary (in NetIQ.DRA.RestServiceLibrary.dll) Version: 10.2.2.1
Syntax [WebInvokeAttribute(Method = "POST", ResponseFormat = WebMessageFormat.Json,
RequestFormat = WebMessageFormat.Json, BodyStyle = WebMessageBodyStyle.Wrapped,
UriTemplate = "/dra/workitems/post")]
Stream WorkflowProcessStart(
string workflowPath,
string requestId,
string requestName,
DictionaryData workflowParameters,
DictionaryData encryptedWorkflowParameters,
ConnectionParameters connectionParameters
)
<WebInvokeAttribute(Method := "POST", ResponseFormat := WebMessageFormat.Json,
RequestFormat := WebMessageFormat.Json, BodyStyle := WebMessageBodyStyle.Wrapped,
UriTemplate := "/dra/workitems/post")>
Function WorkflowProcessStart (
workflowPath As String,
requestId As String,
requestName As String,
workflowParameters As DictionaryData,
encryptedWorkflowParameters As DictionaryData,
connectionParameters As ConnectionParameters
) As Stream
Parameters
- workflowPath
- Type: SystemString
Path of the workflow - requestId
- Type: SystemString
ID of the submitted form - requestName
- Type: SystemString
The title of the form used to submit the request - workflowParameters
- Type: DictionaryData
Name/value pairs of parameters to pass to the workflow. - encryptedWorkflowParameters
- Type: DictionaryData
Name/value pairs of parameters to pass to the workflow. These values will be encrypted when placed in the VarSet. - connectionParameters
- Type: NetIQ.DRA.Common.Rest.DataModelsConnectionParameters
Optional ConnectionParameters to specify a specify DRA server and Assistant Admin credentials
Return Value
Type:
StreamA
RestResponse object containing the operation results
See Also