Hi,
I want a particular workflow to be test executed from my mobile application. I went through the Editor UI code and found this method to execute a workflow, but not able to understand the parameters to pass.
// Execute a workflow
runWorkflow: async (startRunData: IStartRunData): Promise<IExecutionPushResponse> => {
return self.restApi().makeRestApiRequest('POST', `/workflows/run`, startRunData);
},
I tried with the following parameter and got this error message.
{"workflowData": {"id":"3"}}
{"code":0,"message":"nodes is not iterable"}
Thanks