Hi. I’m new to n8n but am already super impressed. I’ve been pleasantly surprised how easy it has been to work with. I’ve now run into my first issue and I’m wondering whether what I’m trying to do is simply not possible, or whether I’m doing something wrong.
Basically, I am looking to create a workflow where:
- Check for new files in a specific folder on Google Drive
- Send those files off for processing elsewhere (POST request)
- Once those files have been processed, upload them to a specific folder on Google Drive
The processing of the files after they’ve been sent with the POST request can take a while. I’ve successfully tested the full workflow with polling by checking if the processing has completed.
However, when sending the files for further processing elsewhere, it is possible to provide a callback URL instead of using polling. To try and do this, I’ve also created a webhook trigger in the same workflow and send the provided URL when sending the file off for processing.
This does not appear to work. It seems like the webhook trigger “cancels out” the Google Drive trigger, as it never fires when clicking “Test workflow.” But as soon as I deactivate the webhook trigger, the Google Drive trigger works again.
Is what I am trying to do not possible? Or is there a way to have both triggers work? I’ve tried searching for this but the only thing I’ve found was confirmation that there can be multiple webhook triggers in a workflow, but I didn’t find anything about it being possible to have a webhook trigger and a trigger of another kind.
Thanks in advance.