how to trigger webhook from zapier code
问题 I have 2 zaps. First finishes with Code by Zapier block, where I parse input information from previous steps getting array with data e.g.: var elements = [{id: 12, calculatedValue: 13},{id: 13, calculatedValue: 'red'}] then in a loop I traverse it, create requests bodies var options = { "url": "https://hooks.zapier.com/hooks/catch/xxxxxx/xxxxxx/", "method": "POST" }, requests = elements.map(mapDataToSettings); function mapDataToSettings(elem) { var settings = Object.assign({}, options);