entitys

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

  1. Trigger a workflow when an external system sends data to the '/import' endpoint.
  2. 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 request
  • headers - The HTTP headers received in the webhook request
  • query - 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.

Discussion