I have created a Maestro flow, added one task and selection action “Create and wait for queue item”. Then I’m processing the queue item from other RPA bot and adding “response” in set transaction process.
Once the Maestro flow is resumed, I am trying to get that “response” from the outputs, but I’m having difficulties in it.
Below are the methods I tried but didn’t work:
output(“response”)
output
result.response.output
result.response.output("response)
am I missing something here or following wrong method?
First try to print your output object as it is coming as object first we can check the structure of output object and then move forward from there on how to access..mostly you might get a json string and we might need to parse it
@arjun.shiroya I have tried but I’m still getting blank in the output
@Anil_G I have printed the output variable in another RPA flow and the schema is {“response”:“response content”}
Then tried with Qresponse(“response”) but it failed (I think it’s object and not JObject).
I have tried parsing it to json but the expression editor does not allow as it does not expose the .NET methods. Also the expression need to be compliant with JS to work in runtime.