entitys Import icon

entitys Import

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 a request is received. The node captures the request's body, headers, query parameters, HTTP method, and URL, then outputs this data for further processing in the workflow. This node is useful for scenarios where external systems need to push data into an n8n workflow via HTTP POST, such as receiving data imports or notifications.

Use Case Examples

  1. Receiving data imports from an external system via HTTP POST to trigger processing workflows.
  2. Capturing webhook notifications from third-party services to initiate automated tasks.

Output

JSON

  • body - The JSON body of the incoming HTTP request.
  • headers - The HTTP headers of the incoming request.
  • query - The query parameters of the incoming request URL.
  • method - The HTTP method used for the request (POST).
  • url - The full URL of the incoming request.

Troubleshooting

  • Ensure the webhook URL path 'entitys-import' is correctly configured and accessible from the external system sending the POST requests.
  • Verify that the incoming requests are HTTP POST as the webhook is configured to accept POST only.
  • Check that the workflow is activated to receive webhook calls; otherwise, the node will not trigger.

Discussion