Package Information
Downloads: 38 weekly / 50 monthly
Latest Version: 0.1.4
Author: Office17
Documentation
n8n-nodes-contact-confirmation
This is an n8n community node that provides contact confirmation functionality. It takes a first name and phone number as inputs and returns a confirmation response.
Installation
Community Nodes (Recommended)
For self-hosted n8n instances:
- Go to Settings → Community Nodes
- Click Install a community node
- Enter
n8n-nodes-contact-confirmation - Click Install
Manual Installation
npm install n8n-nodes-contact-confirmation
Node: Contact Confirmation
The Contact Confirmation node accepts contact information and returns a confirmation message.
Inputs
| Parameter | Type | Required | Description |
|---|---|---|---|
| First Name | String | Yes | The first name of the contact |
| Phone Number | String | Yes | The phone number of the contact |
Output
Returns a JSON object with the following structure:
{
"message": "confirm",
"data": {
"firstName": "John",
"phoneNumber": "+1234567890"
}
}
Example Usage
- Add the Contact Confirmation node to your workflow
- Enter the first name (e.g., "John")
- Enter the phone number (e.g., "+1234567890")
- Execute the node
- The node outputs a confirmation with the provided data
Use Cases
- Contact Form Processing: Confirm receipt of contact form submissions
- Lead Validation: Validate and confirm new lead information
- Data Pipeline: Use as a checkpoint in contact data processing workflows
- Integration Testing: Test contact data flows in your automation
Compatibility
- Requires n8n version 0.187.0 or above
- Compatible with n8n Cloud and self-hosted instances
Resources
License
Author
SJ Office
- Email: office@example.com
Support
If you encounter any issues or have questions:
- Open an issue on GitHub
- Check the n8n Community Forum
Version History
0.1.0 (Initial Release)
- Basic contact confirmation functionality
- First name and phone number inputs
- Confirmation message output