Hello ESRI Community,
I am trying to build a Make (formerly Integromat) scenario to watch a Survey123 and trigger a notification status count is less than a fixed number.
To elaborate, our Survey has a 'Status' question/field with a list of choices (domains) assigned to it, one of them being 'Work in progress'. Now, we want that a notification is triggered only when the count for 'Work in progress' is less than 10, lets say.
Suggestions or guidance on how to achieve this will be helpful.
Solved! Go to Solution.
All right, so what I would do in a situation like this is to take the survey webhook in Make and use its token to query the feature service.
The other fields in your POST would be:
Then have your flow parse the JSON of the response, find the count value in the JSON, and then set up a filter on the rest of your flow based on that value.
Are you looking to sum values across multiple surveys, then? Or would your users be answering "work in progress" to 10 different questions in the same survey?
Thank you for responding @jcarlson !
I'm looking to sum values across multiple surveys. Example screen shot :
All right, so what I would do in a situation like this is to take the survey webhook in Make and use its token to query the feature service.
The other fields in your POST would be:
Then have your flow parse the JSON of the response, find the count value in the JSON, and then set up a filter on the rest of your flow based on that value.
Thank you for your suggestions @jcarlson ! Your suggestions helped us setup the desired Make scenario. Based on our chat internally, adding the JSON parser to the flow helped set up the alert based on count.
Thanks again!