Parameter not populating in Orchestrator despite having it as arguments in Studio

You have to basically pass your argument down to the invoked workflow.

See here for the simplest setup :slight_smile:

If you publish this, this will happen:

  1. in_username argument will be exposed in Orchestrator
  2. in_username will be passed as a value to the invoked workflow
  3. in the invoked workflow, it should look like this:

You basically have to:

  1. work with arguments
  2. look at it ‘from the top’

The top-most level is the Orchestrator (in your case). You then take this argument and assign it as a value to the inner argument of the invoked workflow.

I hope it makes things clear :slight_smile: I really hope someone has figured out an easier way to explain it (maybe graphically). I remember it took me some time to get it initially :smiley: But it is rather straight-forward in the end.

1 Like