I am trying to build a one-way integration between Todoist and Notion. The way I am building it is to get the latest task added on Todoist and add it to Notion.
I am using Webhook to get the data from Todoist. However, I am not sure why I am not getting any data what I am getting is the following
While Todoist seems to use a GET request to validate the webhook URL, their documentation suggests they use POST requests to submit the actual data. So, you most likely need a second webhook node accepting POST requests on the same path here.
Also, make sure you’re aware of the difference between the test and production URL of a webhook, this is explained here in our docs.
Hope this helps! Let me know if you have any questions on this.