Run Multiple Scenario Chains
A request is made through GMUS to run multiple Scenario Chains from different repositories (see example below).
URL: http://<ipAddress>:<port>/rest/repoScenarios
Method Type: POST
Parameters (with example values):
{ "clientAppId" : "XXXXXXXX-1e47-abcd-ba66-XXXXXXXXXXXX", "clientUserId": "XXXXXXXX-abcd-4284-aa45-XXXXXXXXXXXX", "username": "jane.doe@gmail.com", "debug": true, "scenarios": [ { "scenario": "JSONScenarioChain", "repoName": "repo1", "component": "ScenarioChain", "api": [ { "methodName": "domainSetLoopCount", "parameters": { "domainName": "User", "loopCount": "10" } } ] }, { "scenario": "AllScenarioChain", "repoName": "repo2", "component": "ScenarioChainSet", "api": [ { "methodName": "domainSetLoopCount", "parameters": { "domainName": "Address", "loopCount": "30" } } ] } ] }