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 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

  1. Use this node to trigger workflows when external systems send data via HTTP POST to the 'entitys-import' endpoint.
  2. 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 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 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.

Discussion