New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

n8n-nodes-d7-messaging

Package Overview
Dependencies
Maintainers
0
Versions
9
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

n8n-nodes-d7-messaging

Custom n8n nodes for D7 API to send SMS and WhatsApp messages

0.2.2
latest
Source
npm
Version published
Maintainers
0
Created
Source

D7 Messaging Logo

D7Networks Messaging Integration for n8n

Installation

1. Install D7Networks Node

  • Open your n8n workspace
  • Click on Settings (⚙️) in the bottom left corner
  • Select Community Nodes from the sidebar
  • Search for n8n-nodes-d7-messaging
  • Click Install
  • Restart n8n when prompted

2. Verify Installation

  • Refresh your n8n workspace
  • Open the nodes panel (right sidebar)
  • Search for "D7"
  • You should see "D7 SMS" and "D7 WhatsApp" nodes
  • Try dragging either node into your workflow

3. Configure Authentication

  • Get your API key from D7 Networks
  • In your n8n workflow:
    • Add D7 SMS or D7 WhatsApp node
    • Click "Create New Credential"
    • Enter your API key
    • Save credential

Creating Messaging Workflows

Basic Workflow Structure

[Contact Source] → [Function Node] → [D7 SMS/WhatsApp Node]

Step 1: Import Contacts

Choose any contact source node:

  • Google Sheets
  • Airtable
  • Database nodes
  • Google Contacts
  • CSV
  • Any CRM integration

Step 2: Process Contact Data

Add a Function node to format your contacts:

// Format contacts for D7 nodes
return items.map(item => ({
  json: {
    recipient: item.json.phone,  // or any field containing phone number
    name: item.json.name,        // or any field containing name
  }
}));

Step 3: Configure D7 Node

For SMS:
  • Connect Function node to D7 SMS node
  • Configure fields:
    • Recipients: {{ $json.recipient }}
    • Message: Hello {{ $json.name }}, your message here
For WhatsApp:
  • Connect Function node to D7 WhatsApp node
  • Configure fields:
    • Recipients: {{ $json.recipient }}
    • Choose message type (Template/Text/Media)
    • Add message content or template parameters

Testing Your Workflow

  • Start with test contacts (2-3 numbers)
  • Activate workflow
  • Check message delivery
  • Monitor for any errors
  • Scale up after successful testing

Common Issues & Solutions

Invalid Phone Numbers

  • Ensure numbers are in E.164 format
  • Add validation in Function node:
// Phone number validation
function validatePhone(phone) {
  const cleaned = phone.replace(/\D/g, '');
  return cleaned.startsWith('+') ? cleaned : '+' + cleaned;
}

Message Delivery Issues

  • Verify API credentials
  • Check recipient number format
  • Ensure sufficient credit balance

Need help? Contact

Support

Would you like me to expand on any of these sections or add more specific workflow examples?

Keywords

n8n-community-node-package

FAQs

Package last updated on 22 Jan 2025

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts