webhook-workflow.json•935 B
{
"name": "Example Webhook Workflow",
"nodes": [
{
"id": "webhook-node",
"name": "Webhook",
"type": "n8n-nodes-base.webhook",
"typeVersion": 1,
"position": [250, 300],
"parameters": {
"httpMethod": "POST",
"path": "example-webhook"
}
},
{
"id": "set-node",
"name": "Set Response",
"type": "n8n-nodes-base.set",
"typeVersion": 1,
"position": [450, 300],
"parameters": {
"values": {
"string": [
{
"name": "message",
"value": "Webhook received successfully!"
}
]
}
}
}
],
"connections": {
"webhook-node": {
"main": [
[
{
"node": "set-node",
"type": "main",
"index": 0
}
]
]
}
},
"active": false,
"tags": ["example", "webhook"]
}