npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

@activepieces/piece-clicksend

v0.1.0

Published

ClickSend is a cloud-based messaging platform for sending SMS, MMS, voice, email, and more. This integration allows automation builders and AI agents to send messages, manage contacts, and monitor communication status across workflows.

Readme

ClickSend

ClickSend is a cloud-based messaging platform for sending SMS, MMS, voice, email, and more. This integration allows automation builders and AI agents to send messages, manage contacts, and monitor communication status across workflows.

Authentication

To use this piece, you'll need:

  • Username: Your ClickSend username
  • API Key: Your ClickSend API key

You can get these credentials by signing up for a free account at ClickSend.

Actions

Send SMS

Send one or more SMS messages to customers, leads, or internal users.

Properties:

  • to (required): The phone number to send the message to (with country code)
  • body (required): The body of the message to send
  • from (required): The sender name or number (must be approved in ClickSend)
  • schedule (optional): Schedule the message to be sent at a specific timestamp (Unix timestamp)

Send MMS

Send event posters or product images via MMS.

Properties:

  • to (required): The phone number to send the message to (with country code)
  • body (required): The body of the message to send
  • from (required): The sender name or number (must be approved in ClickSend)
  • media_url (required): The URL of the media file to send (image, video, etc.)
  • schedule (optional): Schedule the message to be sent at a specific timestamp (Unix timestamp)

Create Contact

Capture webinar registrations into SMS lists.

Properties:

  • contact_list_id (required): The ID of the contact list
  • phone_number (required): The phone number of the contact
  • email (optional): The email address of the contact
  • first_name (optional): The first name of the contact
  • last_name (optional): The last name of the contact
  • company_name (optional): The company name of the contact
  • address_line_1 (optional): The first line of the address
  • address_line_2 (optional): The second line of the address
  • city (optional): The city of the contact
  • state (optional): The state/province of the contact
  • postal_code (optional): The postal code of the contact
  • country (optional): The country of the contact

Update Contact

Keep contact details current after CRM sync.

Properties:

  • contact_id (required): The ID of the contact to update
  • phone_number (optional): The phone number of the contact
  • email (optional): The email address of the contact
  • first_name (optional): The first name of the contact
  • last_name (optional): The last name of the contact
  • company_name (optional): The company name of the contact
  • address_line_1 (optional): The first line of the address
  • address_line_2 (optional): The second line of the address
  • city (optional): The city of the contact
  • state (optional): The state/province of the contact
  • postal_code (optional): The postal code of the contact
  • country (optional): The country of the contact

Delete Contact

Opt-out contacts automatically when unsubscribed.

Properties:

  • contact_id (required): The ID of the contact to delete

Create Contact List

Set up segmented marketing lists automatically.

Properties:

  • list_name (required): The name of the contact list

Search Contact by Email Address

Retrieves a contact in a list by email.

Properties:

  • contact_list_id (required): The ID of the contact list
  • email (required): The email address to search for

Search Contact by Phone

Retrieves a contact in a list by phone number.

Properties:

  • contact_list_id (required): The ID of the contact list
  • phone_number (required): The phone number to search for

Search Contact Lists

Check if a marketing list exists before adding contacts.

Properties:

  • None (returns all contact lists)

API Reference

For more detailed information about the ClickSend API, visit the Official ClickSend API Documentation.

Test Account Access

Sign up for a free account at ClickSend Signup to get your API credentials and start testing the integration.

Use Cases

  • Customer Support: Automatically send SMS notifications when support tickets are created
  • Lead Management: Capture leads from forms and add them to SMS marketing lists
  • Event Marketing: Send event reminders and updates via SMS/MMS
  • Order Notifications: Keep customers informed about order status and delivery updates
  • Appointment Reminders: Send automated appointment confirmations and reminders
  • Marketing Campaigns: Manage segmented contact lists for targeted marketing campaigns

Triggers

New Incoming SMS

Triggers when a new SMS message is received. This trigger uses polling to check for new incoming messages and will fire whenever a new SMS is received.

Properties:

  • None (automatically monitors all incoming SMS messages)

Sample Data:

{
  "message_id": "12345678",
  "status": "RECEIVED",
  "message_timestamp": 1644321600,
  "message_time": "2022-02-08 01:00:00",
  "message_to": "+1234567890",
  "message_from": "+0987654321",
  "message_body": "Hello from ClickSend!",
  "message_direction": "in",
  "message_type": "sms",
  "message_parts": 1,
  "message_cost": "0.0250",
  "country": "US",
  "carrier": "Verizon",
  "first_name": "John",
  "last_name": "Doe",
  "email": "[email protected]"
}