LovaRamisetti
2 years agoNew Contributor
Hi!
Did you have a look at the Rest API Documentation Guide? I attached the guide. You will find many examples in there. (from page 11).
Have you tested to run it from Postman? That could make it easier to troubleshoot.
To run a STEP add this in the Body:
{
"BaseWebServerUrl": "{{baseWebURL}}",
"ApplicationName": "{{appName}}",
"DataManagementGroupName": "Automation",
"StepName": "53_Export_Report",
"CustomSubstVarsAsCommaSeparatedPairs": ""
}
To run a SEQUENCE add this in the Body:
{
"BaseWebServerUrl": "{{baseWebURL}}",
"ApplicationName": "{{appName}}",
"SequenceName": "ConsolidateActual",
"CustomSubstVarsAsCommaSeparatedPairs": ""
}
"CustomSubstVarsAsCommaSeparatedPairs": [comma separated list of key value pairs as
substitution variables with the following format: "VariableName1=[VariableValue1],VariableName2=
[VariableValue2],..."] - Optional
}
Thanks