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-outplay

v0.2.10

Published

n8n nodes for Outplay API integration

Downloads

245

Readme

n8n-nodes-outplay

This is an n8n community node. It lets you use Outplay in your n8n workflows.

Outplay is a sales engagement platform that helps sales teams automate their outreach and manage prospects effectively.

n8n is a fair-code licensed workflow automation platform.

Installation
Operations
Credentials
Usage
Compatibility
Resources

Installation

Follow the installation guide in the n8n community nodes documentation.

Quick Install

In your n8n instance, navigate to Settings > Community Nodes and search for n8n-nodes-outplay, then click install.

Alternatively, install via npm in your n8n installation:

npm install n8n-nodes-outplay

Operations

This package provides two nodes for interacting with Outplay:

1. Outplay Node (Actions)

The Outplay node provides the following operations for managing prospects:

Prospect Resource

  • Save Prospect - Create or update a prospect in Outplay

    • Required fields: Email, First Name, Last Name
    • Optional fields: Company, Designation, Phone, LinkedIn, Twitter, Facebook, City, State, Country, Timezone, Sequence Identifier
    • Support for custom fields and tags
    • Use this to add new prospects or update existing ones based on email
  • Get Prospect - Retrieve prospect details by ID

    • Required field: Prospect ID
    • Returns complete prospect information including all custom fields and tags

2. Outplay Trigger Node (Triggers)

The Outplay Trigger node listens for real-time events from Outplay via webhooks:

  • Mail Received (Event ID: 4) - Triggers when an email is received from a prospect
  • Prospect Created (Event ID: 1) - Triggers when a new prospect is created in Outplay
  • Prospect Updated (Event ID: 3) - Triggers when a prospect's information is updated
  • Prospect Opt-Out (Event ID: 2) - Triggers when a prospect opts out of communications

Credentials

To use this node, you need an Outplay account with API access.

Prerequisites

  1. Sign up for an Outplay account
  2. Navigate to Settings > API Settings in your Outplay dashboard
  3. Generate your API credentials (Client ID and Client Secret)

Authentication Setup

This node uses API Key authentication with the following required fields:

  • Location: Your Outplay instance location (e.g., "US", "EU", "DEV")
    • This determines the API endpoint: https://{location}-api.outplayhq.com/api/v1
  • Client ID: Your Outplay API Client ID
  • Client Secret: Your Outplay API Client Secret

The credentials are authenticated using custom headers (X-CLIENT-SECRET) and query parameters (client_id).

Setting Up Credentials in n8n

  1. In your n8n workflow, click on the Outplay node
  2. Click on the Credential to connect with dropdown
  3. Click Create New Credential
  4. Enter your Outplay API credentials:
    • Location (e.g., "US", "EU")
    • Client ID
    • Client Secret
  5. Click Save

Usage

Example Workflow: Save a New Prospect

  1. Add an Outplay node to your workflow
  2. Select Prospect as the resource
  3. Select Save Prospect as the operation
  4. Fill in the required fields:
  5. Optionally add additional fields like Company, Designation, Phone, etc.
  6. Add tags or custom fields as needed
  7. Execute the node to create the prospect in Outplay

Example Workflow: Listen for New Prospects

  1. Add an Outplay Trigger node to your workflow
  2. Select Prospect Created as the event
  3. The trigger will automatically register a webhook with Outplay
  4. When a new prospect is created in Outplay, the workflow will be triggered
  5. Use subsequent nodes to process the prospect data (e.g., send notifications, update CRM, etc.)

Example Workflow: Get Prospect Details

  1. Add an Outplay node to your workflow
  2. Select Prospect as the resource
  3. Select Get Prospect as the operation
  4. Enter the Prospect ID
  5. Execute the node to retrieve the prospect's complete information

Compatibility

  • Minimum n8n version: 1.0.0
  • Tested with n8n version: 1.119.1
  • n8n API version: 1

Development

This node was built using the official n8n-node-dev tool and follows all n8n community node guidelines:

  • ✅ No external dependencies
  • ✅ MIT License
  • ✅ TypeScript implementation
  • ✅ Passes n8n linter (npm run lint)
  • ✅ English language only
  • ✅ No environment variable or file system access
  • ✅ Proper error handling and validation

Resources

License

MIT

Support

For issues or questions:

Version History

See CHANGELOG.md for version history and updates.