Webhook doesnt receive data

Im trying to make a app that pull data on google form submission.
The webhook does not work and cannot be triggered when the google form is submited


The worflow is set to active
The webhook returns a 404 while running

I used the code i found on another post for my google script

{
“nodes”: [
{
“parameters”: {
“path”: “46bc5049-6876-42de-bee9-250e852775bb”,
“options”: {
“rawBody”: false
}
},
“name”: “Webhook”,
“type”: “n8n-nodes-base.webhook”,
“typeVersion”: 1,
“position”: [
220,
500
],
“webhookId”: “46bc5049-6876-42de-bee9-250e852775bb”,
“notesInFlow”: false
}
],
“connections”: {}
}

What is the error message (if any)?

Please share the workflow

(Select the nodes and use the keyboard shortcuts CMD+C/CTRL+C and CMD+V/CTRL+V to copy and paste the workflow respectively)

Share the output returned by the last node

Information on your n8n setup

  • 1.3.0
  • Database you’re using (default: SQLite):
  • Running n8n with the execution process [own(default), main]:
  • Desktop app

Hey @KiiREI, welcome to the community!

Your script seems to use a POST method, but your webhook node is configured to wait for a GET request:

image

Also, your snippet seems to use the production URL rather than the test URL. Data sent to the production URL would not appear in the n8n UI but would be processed in the background. If you run your node/workflow manually (via the Execute Node or Execute Workflow button), you would need to tue the test URL provided by your webhook node instead. Check out our docs for more information on these two URLs.

Hope this helps :slight_smile: