entitys Import Webhook icon

entitys Import Webhook

Overview

This node acts as a webhook trigger named 'entitys Import Webhook'. It listens for HTTP POST requests on the path 'entitys-import' and triggers the workflow when such a request is received. The node captures the incoming request data including the body, headers, query parameters, HTTP method, and URL, and passes this data as JSON output to 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 and process incoming webhook data such as form submissions, API callbacks, or notifications from other services.

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 is correctly configured and accessible from the external service sending the POST request.
  • Verify that the external service sends data in the expected format (JSON or form data) to avoid empty or malformed body content.
  • Check network and firewall settings to allow incoming HTTP POST requests to the webhook endpoint.

Discussion