I’m getting a json as output (argument name: response) from a maestro flow in the case management.
Now, I am passing the that output to the agent as an input (argument name: inResponse) but I’m getting error: Input does not conform to schema\n.required:Required properties ["inResponse"] are not present\nErrorCode:Agent.InputArgumentsSchema\n
I have tried plenty of way to pass this and nothing has worked till now, below are some of the mothods:
- respose type string, inResponse type string inResponse=response
- respose type object, inResponse type object inResponse=response
- respose type string, inResponse type object inResponse=response
- respose type object, inResponse type string inResponse=(string)response
- respose type string, inResponse type object inResponse=(object)response
Can anyone provide a correct way to do this.
Also if anyone know how the data binding/mapping should be done between the tasks in case management that would be really helpful as I am getting lot of data binding issues here and there more than the actual processing issues.
Thanks in advance.