Overview
This node acts as a webhook trigger named 'entitysImportTrigger' that listens for HTTP POST requests at the path '/import'. When triggered, it captures the incoming request's body, headers, and query parameters and outputs them as JSON data for further workflow processing. It is useful for workflows that need to start based on external data imports or webhook events.
Use Case Examples
- Trigger a workflow when an external system sends data to the '/import' endpoint.
- Capture and process incoming JSON payloads, headers, and query parameters from HTTP POST requests.
Output
JSON
body- The JSON body data received in the webhook requestheaders- The HTTP headers received in the webhook requestquery- The query parameters received in the webhook request
Troubleshooting
- Ensure the webhook URL is correctly configured and accessible from the external system sending the POST request.
- Verify that the incoming request uses the POST method as expected by the webhook.
- Check that the data sent in the request body is properly formatted to avoid parsing errors.