Sorry, we didn't find any relevant articles for you.

Send us your queries using the form below and we will get back to you with a solution.

GMUS API: Run a Scenario Chain

Run a Scenario Chain

A REST request is made to the GMUS to run a Scenario Chain. When running a Scenario Chain, the inMemory parameter is ignored.

URL: http://<ipAddress>:8070/rest/scenarioChain

Method Type: POST

Parameters (with example values):

{
    "clientAppId" : "XXXXXXXX-1e47-abcd-ba66-XXXXXXXXXXXX",
    "clientUserId": "XXXXXXXX-abcd-4284-aa45-XXXXXXXXXXXX",
    "username"    : "jane.doe@gmail.com",
    "scenario"    : "AllScenarioChain.grs",
    "scenarioPath": "/home/jDoe/Downloads/output",
    "keepFileName": true
}

Run a Scenario Chain Over Multiple Threads

Include the threaded option to execute the Scenario Chain over multiple threads:

{
    "clientAppId" : "XXXXXXXX-1e47-abcd-ba66-XXXXXXXXXXXX",
    "clientUserId": "XXXXXXXX-abcd-4284-aa45-XXXXXXXXXXXX",
    "username"    : "jane.doe@gmail.com",
    "scenario"    : "AllScenarioChain.grs",
    "scenarioPath": "/home/jDoe/Downloads/output",
    "keepFileName": true
    "threaded"    : 5
}