Using values from called scenario

There has been several topics concerning adjacent questions, but they haven’t been able to answer my specific question:

Is there a way to call a scenario (let’s call it A) from another scenario (scenario B) so that I can retrieve a TRUE or FALSE value from an output of scenario A?

Currently I’m using a Make — Run scenario action in B where I call A. But when I run that action, the only output I get is a status and execution ID.

What would I have to append in scenario A to have a JSON output body for scenario B to use? In this example the preferred scenario would be an output of true when branch OUTPUT 1 is reached, and FALSE when the other branch is run.

I’m using a Core subscription tier so I have access to some additional features if needed.

Hello @beginswithaJ,

You can use an HTTP Make a API Key Request module in Scenario B to call Scenario A.
Scenario A should have a webhook trigger module as well as a Webhook Response module to send the result back to Scenario B.

1 Like

Thanks for the inspiration!

Final solution (for the ones wondering and reading along) is as follows for scenario A:

On the Webhook response modules at the end I’ve used a setup similar to this:

and my scenario B now looks like this:

Where I call the webhook URL for scenario A with a plain HTTP request module. Making sure the Body type is Raw, and Content type is JSON. Don’t forget to Parse the response to get the full collection of individual key/value pairs from scenario A output separated.

1 Like