Hi,
Lets say I have an IFTTT that does some action (for example, update a Jira issue), let's name it UpdateJiraIssue, and I want to create a 2nd IFTTT that will run only if [iftttResult_UpdateJiraIssue] is not empty. Is it possible to set the condition of the 2nd IFTTT based on the first one's result?
And if it's possible, what is the right syntax for the condition?
Thanks in advance
Configure it to run on the same event and same condition, place the macro right after the one that you have
Thanks for the response.
While it works for the specific example I gave, I am still looking for ways check the IFTTT result as part of the condition for another IFTTT.
An example for when will this be needed is when I want an IFTTT to run based on a response from WS IFTTT.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You need to save it back to some ConfiForms field and then can check that field (including use of functions - for example if a JSON response is returned, then you can transform it to JSON and check the fields for values, etc)
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
So instead of:
firstIFTTT: do something → if !iftttResult_firstIFTTT:[empty] : secondIFTTT: do something
I have to do:
firstIFTTT: do something → secondIFTTT: resultField=[iftttResult_firstIFTTT] → if !resultField:[empty] : thirdIFTTT: do something
Thanks for the response.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Yes, you put this IFTTT after the 1st one - https://wiki.vertuna.com/spaces/CONFIFORMS/pages/9864128/Configuring+ConfiForms+IFTTT+actions+and+rules#ConfiguringConfiFormsIFTTTactionsandrules-Create(Update)ConfiFormsEntry
Save the response to some field
And have the condition in the 3rd IFTTT (now it is your 2nd) to check that field for the value
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.