dropcowboy

n8n workflow automation nodes for Drop Cowboy - Ringless voicemail and SMS automation platform

Package Information

Downloads: 34 weeklyĀ /Ā 43 monthly
Latest Version: 1.0.2
Author: Drop Cowboy

Documentation

Drop Cowboy n8n Nodes

Official n8n nodes for Drop Cowboy - Automate ringless voicemail and SMS campaigns.

Installation

Community Nodes (Coming Soon)
Install directly from n8n's node browser once published.

Manual Installation

npm install @dropcowboy/n8n-nodes-dropcowboy

Credentials

You'll need your Drop Cowboy API credentials:

  • Team ID: Found in your Drop Cowboy account under "My Account" → "API"
  • Secret: Your API secret (keep this secure!)

Visit the Drop Cowboy API Documentation for more details.

Available Nodes

Actions (Send campaigns)

  • Send RVM from Recording - Send ringless voicemails using pre-recorded audio files
  • Send RVM from AI Voice - Send ringless voicemails using text-to-speech with AI voices
  • Send SMS - Send text messages

All action nodes support Multiple Outputs (Easy Branching) for automatic routing based on delivery status - no code required!

Usage

Send RVM from Recording

  1. Add Drop Cowboy credentials to n8n
  2. Add "Send RVM from Recording" node to your workflow
  3. Configure:
    • Phone Number: Recipient's phone number (E.164 format, e.g., +15551234567)
    • Brand: Your registered brand from the Trust Center
    • Recording: Select pre-recorded audio file
    • Forwarding Number (optional): Phone number for replies
    • Output Mode: Choose "Multiple Outputs" for easy branching!

Send RVM from AI Voice

  1. Add Drop Cowboy credentials to n8n
  2. Add "Send RVM from AI Voice" node to your workflow
  3. Configure:
    • Phone Number: Recipient's phone number (E.164 format, e.g., +15551234567)
    • Brand: Your registered brand from the Trust Center
    • AI Voice: Select text-to-speech voice
    • Message Text: Enter the message to be spoken
    • Output Mode: Choose "Multiple Outputs" for easy branching!

Send SMS

  1. Add Drop Cowboy credentials to n8n
  2. Add "Send SMS" node to your workflow
  3. Configure:
    • Phone Number: Recipient's phone number (E.164 format, e.g., +15551234567)
    • Brand: Your registered brand from the Trust Center
    • Message: SMS message text
    • Output Mode: Choose "Multiple Outputs" for easy branching!

šŸ”€ Easy Branching (No Code Required!)

For Non-Technical Users ⭐

NEW: Multiple Outputs Mode - Automatically route results without writing any expressions!

Send RVM from Recording / AI Voice (Multiple Outputs)
  ↓
  ā”œā”€ āœ… Success → Send follow-up SMS
  ā”œā”€ āŒ Failure → Log & analyze 
  └─ 🚫 DNC     → Permanent do-not-call (Internal DNC, Known Litigator)

How to use:

  1. Select "Output Mode" → "Multiple Outputs (Easy Branching)"
  2. Activate workflow
  3. Just drag lines from each output! No code needed!

šŸ’” Note: Review reason codes in webhook data to understand why each delivery succeeded or failed. Consult legal counsel regarding your specific compliance obligations.

See EASY_BRANCHING.md for step-by-step visual guide


For Technical Users

Use IF/Switch nodes with expressions for advanced control:

Send RVM → IF {{ $json.status === "success" }}
           ā”œā”€ TRUE → Advanced logic
           └─ FALSE → Custom error handling

See WEBHOOK_WAIT.md for:

  • IF node patterns with expressions
  • Switch node routing by failure reason
  • Custom retry logic
  • Complex multi-stage campaigns

API Endpoints

This package integrates with the Drop Cowboy v1 API:

  • Base URL: https://api.dropcowboy.com/v1/
  • Authentication: Team ID + Secret

Development

Build

npm run build

Test

npm test

Lint

npm run lint

Support

Visit Drop Cowboy for support or check the API Documentation.

License

UNLICENSED - Private use only (for now)

When published publicly, this will be licensed under MIT.

Discussion