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.
- Package:
n8n-nodes-payzcore - Source: github.com/payzcore/n8n-nodes-payzcore
- Requirements: n8n 1.0+, PayzCore account
Installation
In your n8n instance, install the community node:
- Go to Settings > Community Nodes
- Click Install a community node
- Enter
n8n-nodes-payzcore - Click Install
Or via CLI:
npm install n8n-nodes-payzcoreAuthentication
- In n8n: Credentials > New Credential > PayzCore API
- Enter your API Key (
pk_live_...) - Base URL:
https://api.payzcore.com(default)
Available Operations
PayzCore Node
| Operation | Description |
|---|---|
| Create Payment | Create a new monitoring request |
| Get Payment | Get payment status with real-time blockchain check |
| List Payments | List all payments with optional filters |
| Cancel Payment | Cancel a pending payment |
| Confirm Payment | Submit tx hash (pool+txid mode) |
PayzCore Trigger Node
| Trigger | Description |
|---|---|
| Webhook Received | Fires 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 channelCreate Payment from Form
Webhook (your form submission)
→ PayzCore: Create Payment
→ Respond to Webhook (return address + QR)Webhook Configuration
When using the PayzCore Trigger node:
- Activate the workflow
- n8n generates a webhook URL (e.g.,
https://your-n8n.com/webhook/xxx) - Copy this URL
- In PayzCore dashboard: set this as your project's webhook URL
- Add your Webhook Secret (
whsec_...) in the trigger node settings
The trigger node verifies signatures automatically.