Overview
This node acts as a webhook trigger for the 'entitys' resource. It listens for incoming HTTP POST requests at the path 'entitys-menu-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, making this data available for further processing in the workflow. This is useful for scenarios where external systems need to notify or send data to the workflow in real-time, such as receiving updates or data imports from an external service.
Use Case Examples
- Trigger a workflow when an external system sends data to the 'entitys-menu-import' webhook endpoint.
- Capture and process incoming data from a third-party application via HTTP POST requests.
Output
JSON
body- The JSON body of the incoming webhook request.headers- The HTTP headers of the incoming webhook request.query- The query parameters of the incoming webhook request URL.method- The HTTP method used for the webhook request.url- The full URL of the webhook request.
Dependencies
- An optional API key credential named 'entitysMenuApi' can be used for authentication if required.
Troubleshooting
- Ensure the webhook URL path 'entitys-menu-import' is correctly configured and accessible from the external system sending requests.
- Verify that the incoming requests use the HTTP POST method as expected by the webhook.
- Check that the optional API key credential is correctly set up if the external system requires authentication to send data.