Overview
This node acts as a webhook trigger named 'entitys' that listens for incoming HTTP POST requests at the path '/import'. When triggered, it captures the request's body, headers, and query parameters and outputs them as JSON data. This node is useful for workflows that need to start based on external HTTP POST events, such as receiving data imports or notifications from other systems.
Use Case Examples
- Trigger a workflow when an external system sends data via HTTP POST to '/import'.
- Capture and process incoming JSON payloads, headers, and query parameters from webhook calls.
Output
JSON
body- The JSON-parsed body of the incoming HTTP POST requestheaders- The headers of the incoming HTTP POST requestquery- The query parameters of the incoming HTTP POST request
Troubleshooting
- Ensure the external system sends HTTP POST requests to the correct webhook URL path '/import'.
- Verify that the incoming request body is properly formatted JSON to avoid parsing errors.
- Check that the workflow is activated to receive webhook triggers.