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

@velocity-bpa/n8n-nodes-appcues

v1.0.0

Published

n8n community node for Appcues - Manage user onboarding flows, segments, checklists, surveys, and analytics

Downloads

22

Readme

n8n-nodes-appcues

[Velocity BPA Licensing Notice]

This n8n node is licensed under the Business Source License 1.1 (BSL 1.1).

Use of this node by for-profit organizations in production environments requires a commercial license from Velocity BPA.

For licensing information, visit https://velobpa.com/licensing or contact [email protected].

This n8n community node provides comprehensive integration with Appcues, enabling seamless user onboarding and experience management workflows. Supports 6 core resources including Users, Flows, Segments, Checklists, Surveys, and Analytics with full CRUD operations and advanced querying capabilities for data-driven user engagement automation.

n8n Community Node License TypeScript User Onboarding Analytics Automation

Features

  • User Management - Create, update, delete, and query user profiles with custom properties and segmentation
  • Flow Control - Manage onboarding flows, product tours, and user experience sequences programmatically
  • Segment Operations - Create dynamic user segments based on behavior, properties, and engagement metrics
  • Checklist Management - Build and manage guided task lists and progress tracking for user adoption
  • Survey Integration - Deploy and collect feedback through in-app surveys and NPS campaigns
  • Analytics Retrieval - Extract engagement metrics, conversion data, and user behavior insights
  • Batch Processing - Execute bulk operations for user imports, updates, and data synchronization
  • Event Tracking - Monitor user interactions, completions, and custom event triggers

Installation

Community Nodes (Recommended)

  1. Open n8n
  2. Go to SettingsCommunity Nodes
  3. Click Install a community node
  4. Enter n8n-nodes-appcues
  5. Click Install

Manual Installation

cd ~/.n8n
npm install n8n-nodes-appcues

Development Installation

git clone https://github.com/Velocity-BPA/n8n-nodes-appcues.git
cd n8n-nodes-appcues
npm install
npm run build
mkdir -p ~/.n8n/custom
ln -s $(pwd) ~/.n8n/custom/n8n-nodes-appcues
n8n start

Credentials Setup

| Field | Description | Required | |-------|-------------|----------| | API Key | Your Appcues API key from account settings | Yes | | Account ID | Your Appcues account identifier | Yes | | Environment | Production or sandbox environment | No |

Resources & Operations

1. User

| Operation | Description | |-----------|-------------| | Create | Create new user profiles with properties and segments | | Update | Modify existing user data and custom attributes | | Get | Retrieve individual user details and engagement history | | List | Query users with filtering, pagination, and sorting | | Delete | Remove user profiles and associated data | | Track Event | Log custom user actions and behavior events |

2. Flow

| Operation | Description | |-----------|-------------| | Create | Build new onboarding flows and product tours | | Update | Modify flow content, triggers, and targeting rules | | Get | Retrieve flow configuration and performance metrics | | List | Browse available flows with status and analytics | | Publish | Deploy flows to production environment | | Archive | Deactivate and archive completed flows |

3. Segment

| Operation | Description | |-----------|-------------| | Create | Define user segments with behavioral and property criteria | | Update | Modify segment rules and membership conditions | | Get | Retrieve segment details and current user count | | List | View all segments with membership statistics | | Delete | Remove segments and update user assignments | | Get Users | List users belonging to specific segments |

4. Checklist

| Operation | Description | |-----------|-------------| | Create | Build guided task lists and adoption workflows | | Update | Modify checklist items, ordering, and completion logic | | Get | Retrieve checklist configuration and completion rates | | List | Browse checklists with progress and engagement metrics | | Delete | Remove checklists and associated progress data | | Track Progress | Update user progress and task completion status |

5. Survey

| Operation | Description | |-----------|-------------| | Create | Design feedback surveys and NPS campaigns | | Update | Modify survey questions, triggers, and targeting | | Get | Retrieve survey configuration and response data | | List | View surveys with response rates and analytics | | Delete | Remove surveys and associated response data | | Get Responses | Export survey responses and feedback data |

6. Analytics

| Operation | Description | |-----------|-------------| | Get Metrics | Retrieve engagement and conversion analytics | | Get Events | Export user event data and interaction logs | | Get Funnel | Analyze flow completion and drop-off rates | | Get Cohorts | Generate cohort analysis and retention metrics | | Export Data | Bulk export analytics data for external analysis |

Usage Examples

// Create a new user with custom properties
{
  "resource": "user",
  "operation": "create",
  "userId": "user_12345",
  "properties": {
    "email": "[email protected]",
    "name": "John Doe",
    "plan": "premium",
    "signupDate": "2024-01-15"
  }
}
// Create a user segment for premium customers
{
  "resource": "segment", 
  "operation": "create",
  "name": "Premium Users",
  "criteria": {
    "properties": {
      "plan": "premium",
      "status": "active"
    },
    "events": {
      "payment_completed": {
        "within": "30d"
      }
    }
  }
}
// Deploy an onboarding flow for new users
{
  "resource": "flow",
  "operation": "publish",
  "flowId": "flow_onboarding_2024",
  "targeting": {
    "segments": ["new_users"],
    "triggers": ["first_login"],
    "frequency": "once"
  }
}
// Retrieve flow analytics and completion metrics
{
  "resource": "analytics",
  "operation": "get_funnel",
  "flowId": "flow_onboarding_2024",
  "dateRange": {
    "start": "2024-01-01",
    "end": "2024-01-31"
  },
  "metrics": ["views", "completions", "drop_offs"]
}

Error Handling

| Error | Description | Solution | |-------|-------------|----------| | Authentication Failed | Invalid API key or account ID | Verify credentials in Appcues account settings | | Rate Limit Exceeded | Too many API requests in time window | Implement delays between requests or use batch operations | | User Not Found | Specified user ID does not exist | Check user ID format or create user first | | Flow Not Published | Attempting to access unpublished flow | Publish flow before referencing in operations | | Invalid Segment Criteria | Malformed segment rules or properties | Validate segment criteria format and property names | | Survey Response Limit | Maximum survey responses reached | Archive old responses or upgrade account plan |

Development

npm install
npm run build
npm test
npm run lint
npm run dev

Author

Velocity BPA

Licensing

This n8n community node is licensed under the Business Source License 1.1.

Free Use

Permitted for personal, educational, research, and internal business use.

Commercial Use

Use of this node within any SaaS, PaaS, hosted platform, managed service, or paid automation offering requires a commercial license.

For licensing inquiries: [email protected]

See LICENSE, COMMERCIAL_LICENSE.md, and LICENSING_FAQ.md for details.

Contributing

Contributions are welcome! Please ensure:

  1. Code follows existing style conventions
  2. All tests pass (npm test)
  3. Linting passes (npm run lint)
  4. Documentation is updated for new features
  5. Commit messages are descriptive

Support