entitys

Overview

This node acts as a webhook trigger named 'entitys' that listens for incoming HTTP POST requests at the path '/import'. When triggered, it captures the request's body, headers, and query parameters and outputs them as JSON data. This node is useful for workflows that need to start based on external HTTP POST events, such as receiving data imports or notifications from other systems.

Use Case Examples

  1. Trigger a workflow when an external system sends data via HTTP POST to '/import'.
  2. Capture and process incoming JSON payloads, headers, and query parameters from webhook calls.

Output

JSON

  • body - The JSON-parsed body of the incoming HTTP POST request
  • headers - The headers of the incoming HTTP POST request
  • query - The query parameters of the incoming HTTP POST request

Troubleshooting

  • Ensure the external system sends HTTP POST requests to the correct webhook URL path '/import'.
  • Verify that the incoming request body is properly formatted JSON to avoid parsing errors.
  • Check that the workflow is activated to receive webhook triggers.

Discussion