Hi Friends,
Customer request to connect client vRO server to new vRO server and run the workflow.
So I have connected new vRO server using HTTP_REST plugin and I have created Rest Operation to execute the workflow.
When i try to invoke the Rest Operation , I am getting status code :302. May be i am missing something in content.
Can you please help me on this.
Note :- I tested same thing in vRO Swagger, able to trigger the workflow (status code 202). https://192.168.1.23:8281/vco/api/docs/index.html#!/execution-controller/startWorkflowExecutionUsing...
Content :
Test-1
{
"executionId": "string",
"parameters": [
{
"value": {"string":{ "value": "InputValue"}},
"type": "string",
"name": "Input1",
"scope": "local"
},
{
"value":{"number":{"value": "20"}},
"type": "number",
"name": "Size",
"scope": "local"
}
]
}
Test-2
{
"parameters": [
{
"value": {"string":{ "value": "InputValue"}},
"type": "string",
"name": "Input1",
"scope": "local"
},
{
"value":{"number":{"value": "20"}},
"type": "number",
"name": "shareSize",
"scope": "local"
}
]
}