Having a Confiform containing these 3 fields:
In an IFTTT that Creates Jira Issue, I want the component of the JIRA issue being created to be set to one of the values for Field_A, as well as one of the values for Field B. However, I want to only set the component to the value in Field_C if it is not set to C3.
Can this be done within a single IFTTT?
Knowing that components is an array, is this the correct syntax to set the component for fields Field_A and Field_B (unconditional action)?
"fields":
{
"components" :
[
{
"name":"[entry.Field_A.ID]
}
],
[
{
"name":"[entry.Field_B.ID]
}
]
}
What would be the syntax to set the component based on the conditions determined by the value of Field_C in the same IFTTT? Or do I need a separate IFTTT to express the condition in the "Fire IFTTT action only when this condition/filter is met"?
I think you can do it in one IFTTT using: "components":[{"name":"[entry.Field_A]"},{"name":"[entry.Field_B]"}<#if entry.Field_C != "C3">,{"name":"[entry.Field_C]"}</#if>]
– this includes Field_C only when it’s not C3.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.