Overview
This node acts as a webhook trigger named 'entitys Import'. It listens for incoming HTTP POST requests at the path 'entitys-import' and triggers the workflow when such requests are received. The node captures the entire request data including the body, headers, query parameters, HTTP method, and URL, and outputs this data as JSON for further processing in the workflow.
Use Case Examples
- Use this node to trigger workflows when external systems send data via HTTP POST to the 'entitys-import' endpoint.
- Capture incoming webhook data from third-party services or custom applications to automate processing or integration tasks.
Output
JSON
body- The JSON body of the incoming HTTP requestheaders- The HTTP headers of the incoming requestquery- The query parameters of the incoming request URLmethod- The HTTP method used for the request (POST)url- The full URL of the incoming request
Troubleshooting
- Ensure the external system sends HTTP POST requests to the correct webhook path 'entitys-import'.
- Verify that the workflow is activated to receive webhook calls.
- Check that the incoming request contains valid JSON if the workflow expects JSON data in the body.