Please be sure you’ve read the docs and API specs before asking for help. Also, please be sure you’ve searched the forum for your answer before you create a new topic.
In the child workflow, the input is taken from the parent workflow using $.trigger.input.myPassedVariable. This variable basically holds the ID of the identity.
When testing the workflow, the child workflow is executed. However, although the HTTPS request step returns success in the child workflow, it does not display any output.
The request URL is:
https://BaseURL/v2026/accounts
with the filter:
identityId eq "{{$.trigger.input.myPassedVariable}}"
→ Status: Success, but no output is displayed.
Step Output
{
“body”: ,
“headers”: {
“Content-Type”: [
“application/json;charset=utf-8”
]
},
“responseTime”: “0.038469 seconds”,
“statusCode”: 200
}
When the variable is hardcoded with an ID value, it returns the output correctly.
Not sure , why passing the variable in request URL is not displaying the output ?
Thanks,
Anirban
