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

v0.1.0

Published

n8n node for AdaPay payment automation API

Readme

n8n-nodes-adapay

This is an n8n community node that provides integration with the AdaPay payment automation API.

n8n is a fair-code licensed workflow automation platform.

AdaPay is a payment automation platform that allows you to automate charge creation, customer management, bank integration, and more.

Installation

Follow the installation guide in the n8n community nodes documentation.

Operations

AdaPay Trigger (Webhook)

Receive real-time events from AdaPay:

  • Charge events (created, paid, cancelled, refunded, expired)
  • Customer events (created, updated, deleted)
  • Bank integration events (connected, disconnected, error)

Automations

  • Create - Create a new automation
  • Get - Get an automation by ID
  • Get All - Get all automations with pagination
  • Update - Update an automation
  • Toggle Status - Enable or disable an automation
  • Delete - Delete an automation

Charges

  • Create - Create a new charge for a customer
  • Get - Get charge details by ID
  • Get Many - List charges with filters (customer, status, pagination)
  • Update - Update charge information
  • Cancel - Cancel a pending charge
  • Refund - Refund a paid charge (full or partial)

Customers

  • Create - Create a new customer with contact and address information
  • Get - Get customer details by ID
  • Get Many - List customers with filters (email, document, pagination)
  • Update - Update customer information
  • Delete - Delete a customer

Bank Integrations

  • Connect - Connect a new bank account
  • Get - Get bank integration details by ID
  • Get Many - List bank integrations with filters (bank name, status)
  • Update - Update bank integration settings
  • Disconnect - Disconnect a bank integration
  • Sync - Synchronize transactions from bank
  • Get Balance - Get current account balance

Credentials

To use this node, you need an AdaPay Access Key. You can generate one in your AdaPay dashboard under Automations.

Usage Examples

Example 1: Automated Payment Workflow

  1. AdaPay Trigger - Listen for charge.created events
  2. AdaPay Customer - Get customer details
  3. Email - Send payment confirmation to customer

Example 2: Customer Onboarding

  1. Webhook - Receive new user registration
  2. AdaPay Customer - Create new customer in AdaPay
  3. AdaPay Charge - Create initial charge
  4. AdaPay Trigger - Wait for payment confirmation

Example 3: Bank Reconciliation

  1. Schedule Trigger - Run daily at midnight
  2. AdaPay Bank Integration - Sync transactions
  3. AdaPay Charge - Get all charges
  4. Function - Match transactions with charges
  5. Spreadsheet - Update reconciliation report

Example 4: Refund Management

  1. AdaPay Trigger - Listen for refund requests
  2. AdaPay Charge - Get charge details
  3. IF - Check if refund is eligible
  4. AdaPay Charge - Process refund
  5. Email - Send refund confirmation

Compatibility

Tested with n8n version 1.0.0+

Resources

Development

Build the Project

npm run build

Run in Development Mode

npm run dev

Format Code

npm run format

Lint Code

npm run lint

License

MIT