npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

n8n-nodes-ingedata-pulse

v1.1.1

Published

Nodes for integration of n8n with Ingedata's Pulse

Downloads

184

Readme

n8n-nodes-ingedata-pulse

This package provides n8n nodes for integration with Ingedata's Pulse platform.

What is Pulse?

Pulse Platform

Pulse is an Enterprise Resource Planning (ERP) system developed by Ingedata. It is a comprehensive platform designed to streamline business operations, resource management, and data integration. Pulse facilitates efficient workflow management, project tracking, and collaboration between teams.

As an ERP system, Pulse centralizes data and processes, enabling teams to work more efficiently with integrated workflows and automated business processes.

Features

This package provides several nodes for interacting with different aspects of the Pulse platform. For more detailed documentation about these features, please visit developer.ingedata.ai.

WorkflowAction Node

The WorkflowAction node is the primary tool for customers to interact with Pulse's project management capabilities:

  • Project Operations:
    • Create, update, and list projects
    • Manage project status
  • Project Member Operations:
    • Add, update, delete, and list project members
    • Assign roles and responsibilities
  • Project Document Operations:
    • Create, update, delete, and list project documents
    • Manage document categories and access rights
  • Project Data Operations:
    • Store and retrieve custom project data
  • Project Work Unit Operations:
    • Create, list, and cancel project work units
  • Activity Operations:
    • Assign members to activities

AccountAction Node

  • Account Operations:
    • Retrieve account information
    • Get current user account information

Installation

Follow the installation guide in the n8n community nodes documentation.

npm install n8n-nodes-ingedata-pulse

Or if you're using pnpm:

pnpm add n8n-nodes-ingedata-pulse

Setup

  1. Add your Pulse API credentials in n8n:

    Create Pulse API Credential

    • API Key
    • API URL (defaults to https://pulse.ingedata.ai)

Generate API Key from Pulse

Generate API Key

Generated API Key

API key generated

  1. Use the nodes in your workflows

Usage Examples

Example 1: Managing Project Activities and Work Units

This workflow demonstrates how to create work units and assign team members to activities: a screenshot of activity workflow

  1. Set up a trigger node (e.g., "When Clicking Test Workflow")
  2. Add a WorkflowAction node with "Project Members" resource:
    • Set Operation to "Get" to retrieve project member details
    • This provides the necessary account information for later assignment
  3. Add a WorkflowAction node with "Project Work Units" resource:
    • Set Operation to "Create"
    • Configure a name for the work unit
    • Link to the appropriate project ID
  4. Add a WorkflowAction node with "Activity" resource:
    • Set Operation to "Get List"
    • Use filters to retrieve activities related to the work unit
  5. Add a final WorkflowAction node with "Activity" resource:
    • Set Operation to "Assign Member"
    • Specify the activity ID from the previous step
    • Select the account ID from the project member
    • Optionally set "Start Working" to true to immediately begin the activity

This workflow automates the process of creating work units and assigning team members to activities, streamlining project management in the Pulse platform. a screenshot of getting member a screenshot of work unit creation node a screenshot of assign member to an activity

Example 2: Project Creation and Management Workflow

This workflow demonstrates how to create and manage projects in the Pulse platform: a screenshot of project creation workflow

  1. Set up a trigger node (e.g., "When clicking Test workflow")
  2. Add a WorkflowAction node with "Projects" resource:
    • Set Operation to "Create"
    • Configure project name, organizational unit, and other required fields
    • This creates a new project in the Pulse platform
  3. Add a WorkflowAction node with "Projects" resource:
    • Set Operation to "Get List"
    • Use this to retrieve the newly created project or existing projects
  4. Add a WorkflowAction node with "Projects" resource:
    • Set Operation to "Filter List"
    • Apply filters to narrow down the project list if needed
  5. Add a WorkflowAction node with "Projects" resource:
    • Set Operation to "Update"
    • Update project name or other project details as needed
  6. Also:
    • Add a WorkflowAction node to get account information
    • Add a WorkflowAction node with "Project Members" resource to add new team members
    • Add a WorkflowAction node to get project Members

This workflow provides a complete project setup process, from creation to team assignment and document management.

a screenshot of project creation node a screenshot of project list node a screenshot of project update node a screenshot of add member

Example 3: Managing Project Data and Documents

This workflow shows how to manage project data and documents: a screenshot of project data workflow

  1. Set up a trigger node (e.g., "When clicking Test workflow")
  2. Add a WorkflowAction node with "Projects" resource:
    • Set Operation to "Get" to retrieve project details
  3. Add a WorkflowAction node with "Project Data" resource:
    • Set Operation to "Get" to retrieve existing project data
  4. Add a Function node:
    • Use this to prepare project data fields with key-value pairs
    • Format the data according to project requirements
  5. Add a Split Out node:
    • Split the data into individual items for processing
  6. Add a Loop Over Items node:
    • Process each data item individually
  7. Add a WorkflowAction node with "Project Data" resource:
    • Set Operation to "Create" to store custom project data
    • Configure key, value, and label for each data point
  8. Add a WorkflowAction node with "Project Documents" resource:
    • Set Operation to "Create" to add project documents
    • Configure document name, category, URL, and access rights

This workflow enables efficient management of project data and documents, allowing teams to store and organize project-related information in a structured way.

a screenshot of project data field node a screenshot of project data creation node a screenshot of add project document

License

ISC