Insight Connect email to a static address

I’m trying to write a simple workflow which is keyed off a detection in IDR and emails a static address…like joe.smith@netscout.com. ICS wants very much to use a variable from a previous step. If I write it like this: {{joe.smith@netscout.com}}, the exchange step likes it, but the flow takes exception.

  • Step: ‘Email details’ has the following error:
    • we can’t find some of the variables in ‘{{joe.smith@netscout.com}}’ input in any of the previous steps
      How can I write this in JSON that the tool will accept?

The to address wants an array.

You don’t need a variable, you just need it to be an array.

[“joe.smith@netscout.com”]

If you wanted multiple addresses it would be [“value”,“value2”]