I want to set a token value based on different dropdown values. eg: <input type="dropdown" token="endpoint" searchWhenChanged="true"> <label>endpoint</label> <choice value=“/abc”>/abc</choice> <choice value=“/defb”>/def</choice> <choice value=“/xyz”>/xyz</choice> <default>/abc</default> <initialValue>/abc</initialValue> </input> <input type="dropdown" token="environment" searchWhenChanged="true"> <label>environment</label> <choice value="prod">prod</choice> <choice value="ppe">pre-prod</choice> <choice value="dev">dev</choice> <default>prod</default> <initialValue>prod</initialValue> </input> In this example, 1. I want to set a token(named as targetName) value to "employee" if the endpoint value is /def and environment is prod. 2. TargetName should be set to "address" for any other endpoint with environment value as prod.
... View more