Instant Trigger is a Trigger that is executed immediately when the data arrives to Integromat. There is nothing to configure in this module except interface. The data processing is handled by a selected Webhook.
If you need to retrieve additional data for each bundle, you can describe a request to execute for each bundle of the webhook:
{
"url": "http://example.com/api/item/{{payload.id}}",
"response": {
"output": {
"id": "{{payload.id}}",
"data": "{{body}}"
}
}
}
This is a normal
Request Specification object, except that
iterate
and pagination
directives are disabled and there is one more
IML variable added - payload
, which
represents current web hook item that is being processed.
NOTE: You are currently able to specify only a single request.