To create an n8n Webhook that can handle dynamic URL parameters, you can try 1. Add a Webhook Node. Open your n8n editor. Click “+” and select Webhook. Configure the Webhook node: HTTP Method: GET or POST (based on your use case) Path: Set it to something like /dynamic/:param1/:param2; Response Mode: On Received; Response Code , I want to create a very simple webhook, when a new follow-up is created within the ticket it sends a post to my N8N with only 3 information: Message, Name of the author of the message and the telephone number of the ticket applicant. Here's an example of json: { "message": "##timelineitems.description##", "author": "##timelineitems.author##",, Discover how to easily create your first API endpoint using webhooks and the automation tool n8n. This blog guides you through each step of the workflow, demonstrating how to utilize webhooks and n8n to build a responsive and user-controlled API, suited to your dynamic needs., Create a simple API endpoint using the Webhook and Respond to Webhook nodes. Why: You can prototype or replace a backend process with a single workflow. Main use cases: Replace backend logic with a workflow, Use the Webhook node to create webhooks, which can receive data from apps and services when an event occurs. It's a trigger node, which means it can start an n8n workflow. This allows services to connect to n8n and run a workflow., Acesse o n8n no navegador em http://localhost:5678 ou no endereço configurado na sua instalação. 2. Faça login com o usuário e senha configurados (se aplicável). 1. No painel do n8n, clique em "New" para criar um novo workflow. 2. No painel de nós (nodes), procure por "Webhook" e arraste o nó "Webhook" para o espaço de trabalho. 1..