entitys-simple

entitys Import (webhook trigger) and entitys Export (HTTP POST action) for n8n.

Package Information

Released: 9/15/2025
Downloads: 0 weekly / 28 monthly
Latest Version: 0.1.0
Author: dcrainic17

Documentation

entitys nodes for n8n (simple)

Two standalone nodes for n8n:

  • entitys Import (Trigger): Receives HTTP POST webhooks. The node UI shows only the generated webhook URLs.
  • entitys Export (Action): Sends an HTTP POST request. Requires a URL and supports optional headers, query parameters, and JSON body.

Installation

npm install n8n-nodes-entitys-simple

Usage

Import (webhook trigger)

  1. Add entitys Import to your workflow.
  2. Copy the Test URL or Production URL from the node UI.
  3. Send a POST request:
curl -X POST "$WEBHOOK_URL" -H "Content-Type: application/json" -d '{"hello":"world"}'
  1. The node outputs the request body, headers, query, method, and url.

Export (HTTP POST action)

  1. Add entitys Export after any node.
  2. Set URL (required).
  3. Optionally add Query Parameters, JSON Body, and Additional Headers.
  4. The node outputs statusCode, headers, and body.

Notes

  • No environment variables or filesystem access.
  • English-only UI and docs.
  • License: MIT

Links

Discussion