Select to view content in your preferred language

Creating a report with multiple records in Make (Integromat)

55
0
Wednesday
AaronManuel2
Regular Contributor

Hello, I'm trying to create an automation in Make (formerly Integromat), that creates a report from a webhook event. 

It works fine but I'm trying to figure out how get it to create 1 pdf report for multiple records, instead of creating a new report for each one. Basically I want to do what you can do manually in the survey123 site when creating a report.

I think the issue is with how the survey 123 module is reading the object ids. I am trying to figure out how to pass an array to it to see if that might work. I realize this seems like a question for the Make forums and I'm going to do that, but in the past they have usually directed me to Esri to try and figure out why an Esri product module is not parsing something correctly.

I thought people more familiar than me with the reporting methods in the arcgis api for python might have some insight. The array I'm trying to pass looks like this:

[
    {
        "array": [
            {
                "0": 12
            },
            {
                "0": 13
            }
        ],
        "__IMTAGGLENGTH__": 2
    }
]

 

The object ids that I want to use for the report in this example are 12 and 13. As I said, trying to pass a comma separated list of ids to the module works, but I'm hoping the array will generate a single report. Maybe this isnt possible.

Thanks!

0 Kudos
0 Replies