New Research: Supply Chain Attack on Axios Pulls Malicious Dependency from npm.Details →
Socket
Book a DemoSign in
Socket

plugin-workflow-http-trigger

Package Overview
Dependencies
Maintainers
1
Versions
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

plugin-workflow-http-trigger

Triggered by HTTP API calls. Suitable for webhook integrations, external system triggers, and custom API endpoints.

latest
Source
npmnpm
Version
1.2.5
Version published
Maintainers
1
Created
Source

plugin-workflow-http-trigger

HTTP Request Trigger plugin for NocoBase workflows. It exposes an HTTP endpoint that can start a workflow run, and ships with a companion "Wait for HTTP Request" action node that pauses a workflow until an external caller resumes it.

Features

  • Trigger NocoBase workflows from any system that can call an HTTP endpoint.
  • Control authentication requirements and allowed HTTP methods per workflow.
  • Capture request body, headers, and query string values as workflow variables.
  • Pause a workflow mid-run and continue execution when an external webhook fires.

Installation

npm install plugin-workflow-http-trigger

After installing, rebuild your NocoBase instance and enable the plugin in the admin interface.

Usage Tips

  • Configure expected query parameters, headers, and body fields in the workflow designer to unlock better variable suggestions for downstream nodes.
  • Expressions: the value exposed as Trigger variables / Request data is serialized JSON. Wrap it with JSON.parse(...) before accessing nested keys, for example JSON.parse(Trigger variables / Request data).orderId.
  • Use the generated webhook URL and token when working with the "Wait for HTTP Request" action node to resume suspended workflows.

Building from Source

npm run build

This command compiles both server and client bundles into the dist/ directory. Use npm run rebuild to clean and rebuild in one step, or npm run pack to create a tarball for distribution.

Keywords

nocobase

FAQs

Package last updated on 11 Dec 2025

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts