Overview
This node acts as a webhook trigger for the entitys.io import service, specifically designed to handle POST requests. It listens for incoming POST requests at a specified webhook path and triggers the workflow upon receiving data. This is useful for scenarios where external systems need to push data into an n8n workflow automatically, such as importing data entries from entitys.io or other services that support webhook-based data delivery.
Use Case Examples
- Automatically trigger a workflow when new data is imported via entitys.io by receiving POST requests.
- Use the webhook to capture and process incoming data entries from external applications in real-time.
Output
JSON
body- The JSON body of the incoming POST request.headers- HTTP headers of the incoming request.query- Query parameters of the incoming request URL.method- HTTP method used for the request, expected to be POST.url- The full URL of the incoming webhook request.
Dependencies
- Requires a webhook endpoint accessible via HTTP POST requests.
Troubleshooting
- Ensure the webhook URL is correctly configured and accessible from the external service sending the POST requests.
- Verify that the incoming requests are POST method as the webhook is configured to accept POST only.
- Check that the external service sends data in the expected format (JSON) in the request body to avoid parsing issues.
Links
- entitys.io Webhooks Documentation - Official documentation for setting up and using webhooks with entitys.io.