PayzCore Docs

n8n

n8n community node for PayzCore. Create payments, check status, and trigger workflows on blockchain payment events. No-code USDT/USDC payment automation.

n8n Integration

The PayzCore n8n community node lets you create, monitor, and manage payments directly in your n8n workflows.

Installation

In your n8n instance, install the community node:

  1. Go to Settings > Community Nodes
  2. Click Install a community node
  3. Enter n8n-nodes-payzcore
  4. Click Install

Or via CLI:

npm install n8n-nodes-payzcore

Authentication

  1. In n8n: Credentials > New Credential > PayzCore API
  2. Enter your API Key (pk_live_...)
  3. Base URL: https://api.payzcore.com (default)

Available Operations

PayzCore Node

OperationDescription
Create PaymentCreate a new monitoring request
Get PaymentGet payment status with real-time blockchain check
List PaymentsList all payments with optional filters
Cancel PaymentCancel a pending payment
Confirm PaymentSubmit tx hash (pool+txid mode)

PayzCore Trigger Node

TriggerDescription
Webhook ReceivedFires when PayzCore sends a webhook notification

The trigger node automatically:

  • Registers a webhook URL with PayzCore
  • Verifies the HMAC signature on incoming webhooks
  • Passes the event data to the next node in the workflow

Example Workflows

Payment Notification via Email

PayzCore Trigger (payment.completed)
    → IF node (check amount > $100)
    → Send Email (Gmail/SMTP)

Auto-Credit User via API

PayzCore Trigger (payment.completed)
    → HTTP Request (POST to your API with external_ref + amount)

Payment Status Dashboard

Schedule Trigger (every 5 minutes)
    → PayzCore: List Payments (status: pending)
    → Slack: Post summary to channel

Create Payment from Form

Webhook (your form submission)
    → PayzCore: Create Payment
    → Respond to Webhook (return address + QR)

Webhook Configuration

When using the PayzCore Trigger node:

  1. Activate the workflow
  2. n8n generates a webhook URL (e.g., https://your-n8n.com/webhook/xxx)
  3. Copy this URL
  4. In PayzCore dashboard: set this as your project's webhook URL
  5. Add your Webhook Secret (whsec_...) in the trigger node settings

The trigger node verifies signatures automatically.

On this page