Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

Table of Contents

Purpose

Use Cases

Start a Workflow on demand

  • Code Block
    languagepowershell
    titleCmdlets to add an order to a workflow
    collapsetrue
    # connect to a JOC Cockpit instance using certificate authentication and preselecting Controller
    Connect-JS7 -Url https://joc-2-0-secondary.sos:7543 -KeystorePath "c:/users/me/client_certificate.p12" -Id testsuite
    
    # add an order to a workflow and provide arguments
    $order = Add-JS7Order -WorkflowPath /TestCases/EODReports -Arguments @{ 'fullReport'=$true; 'reportScope'=3; "reportTitle"="EOD Processing Report" }


x