contact-confirmation

Custom n8n node for contact confirmation

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.

NPM Version
License: MIT

Installation

Community Nodes (Recommended)

For self-hosted n8n instances:

  1. Go to SettingsCommunity Nodes
  2. Click Install a community node
  3. Enter n8n-nodes-contact-confirmation
  4. 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

  1. Add the Contact Confirmation node to your workflow
  2. Enter the first name (e.g., "John")
  3. Enter the phone number (e.g., "+1234567890")
  4. Execute the node
  5. 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

MIT

Author

SJ Office

Support

If you encounter any issues or have questions:

Version History

0.1.0 (Initial Release)

  • Basic contact confirmation functionality
  • First name and phone number inputs
  • Confirmation message output

Discussion