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

v2.0.3

Published

Payment Asia node for n8n

Readme

n8n-nodes-paymentasia

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

Payment Asia is a payment gateway service that supports multiple payment methods including Alipay, WeChat Pay, Credit Cards, FPS, Octopus, PayMe, and CUP (China UnionPay).

n8n is a fair-code licensed workflow automation platform.

Installation Operations Credentials Compatibility Usage Resources Version history

Installation

Follow the installation guide in the n8n community nodes documentation.

Operations

This node supports the following operations:

Payment Resource

| Operation | Description | | ------------------------------ | -------------------------------------------------------------------------------------------------------------------------------------------------- | | Create Payment | Create a new payment transaction with support for multiple payment methods (Alipay, Credit Card, CUP, FPS, Octopus, PayMe, WeChat Pay, UserDefine) | | Payment Query | Query payment details by merchant reference | | Settlement | Retrieve settlement transactions for a specific date | | Direct Credit Card Payment | Create payment with direct credit card details (requires PCI compliance) |

Create Payment Parameters

| Parameter | Required | Description | | ------------------ | -------- | ---------------------------------------------------------------------------------------- | | Amount | Yes | Payment amount in the smallest currency unit | | Currency | Yes | Three-letter ISO currency code (e.g., HKD, USD, EUR) | | Merchant Reference | Yes | Unique identifier for the order in your system | | Payment Method | Yes | Payment method to use (Alipay, CreditCard, CUP, Fps, Octopus, PayMe, UserDefine, Wechat) | | Return URL | No | URL to redirect the customer after payment completion | | Customer Email | No | Customer email address | | Notify URL | No | For receiving datafeed after payment | | Subject | No | The name or keywords of the order |

Direct Credit Card Payment Parameters

| Parameter | Required | Description | | ------------------ | -------- | ------------------------------- | | Amount | Yes | Payment amount | | Currency | Yes | Three-letter ISO currency code | | Merchant Reference | Yes | Unique identifier for the order | | Card Number | Yes | Credit card number | | Card Expiry Year | Yes | Card expiry year (YYYY format) | | Card Expiry Month | Yes | Card expiry month (MM format) | | CVV | Yes | Card verification value |

Note: Direct Credit Card Payment requires PCI DSS compliance.

Credentials

To use this node, you need to authenticate with Payment Asia API using an API Key.

Prerequisites

  1. Register for a Payment Asia Merchant Account

  2. Obtain Your API Key

    • Log in to the Payment Asia Merchant Portal
    • Navigate to Settings or API Settings section
    • Find your API Key (API 金鑰)
    • Copy the API Key for use in n8n

Configure Credentials in n8n

  1. Go to Settings > Credentials in your n8n instance
  2. Click Add Credential
  3. Search for and select Payment Asia API
  4. Enter your API Key (API 金鑰)
  5. Click Save

The credential uses the X-API-KEY header for authentication with the Payment Asia API.

Compatibility

  • Tested with n8n version 1.0+
  • Requires n8n-workflow peer dependency

Usage

Creating a Payment

  1. Add the Paymentasia node to your workflow
  2. Select Payment as the resource
  3. Select Create Payment as the operation
  4. Configure the payment details:
    • Set the amount and currency
    • Provide a unique merchant reference
    • Select the payment method
    • Optionally set return URL and customer details
  5. Execute the node to create the payment request

Querying a Payment

  1. Select Payment Query operation
  2. Enter the merchant reference used during payment creation
  3. The node will return the current payment status and details

Getting Settlement Transactions

  1. Select Settlement operation
  2. Enter the settlement date
  3. Optionally specify a page number for pagination
  4. The node will return all settlement transactions for that date

Resources

Version history

2.0.2

  • Initial release with Payment Asia integration
  • Support for Create Payment, Payment Query, Settlement, and Direct Credit Card Payment operations
  • Multiple payment method support (Alipay, WeChat Pay, Credit Card, FPS, Octopus, PayMe, CUP)