I’ve started playing around with making launchers for individuals to look up data on specific users. I am trying to get the Message part of the Interactive Message step to format based on conditions. I currently have {{$.getAccounts.accounts[?(@.sourceName=="Active Directory")].disabled}}
returning false. I tried setting up the following:
#if({{$.getAccounts.accounts[?(@.sourceName=="Active Directory")].disabled}}==false)Active#{else}Inactive#end
What shows up is:
#if(false==false)Active#{else}Inactive#end
So I’m wondering if Interactive Message can support this or what are the limitations of Interactive Message?