packages/pieces/community/clicksend/README.md
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.
To use this piece, you'll need:
You can get these credentials by signing up for a free account at ClickSend.
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 sendfrom (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 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 sendfrom (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)Capture webinar registrations into SMS lists.
Properties:
contact_list_id (required): The ID of the contact listphone_number (required): The phone number of the contactemail (optional): The email address of the contactfirst_name (optional): The first name of the contactlast_name (optional): The last name of the contactcompany_name (optional): The company name of the contactaddress_line_1 (optional): The first line of the addressaddress_line_2 (optional): The second line of the addresscity (optional): The city of the contactstate (optional): The state/province of the contactpostal_code (optional): The postal code of the contactcountry (optional): The country of the contactKeep contact details current after CRM sync.
Properties:
contact_id (required): The ID of the contact to updatephone_number (optional): The phone number of the contactemail (optional): The email address of the contactfirst_name (optional): The first name of the contactlast_name (optional): The last name of the contactcompany_name (optional): The company name of the contactaddress_line_1 (optional): The first line of the addressaddress_line_2 (optional): The second line of the addresscity (optional): The city of the contactstate (optional): The state/province of the contactpostal_code (optional): The postal code of the contactcountry (optional): The country of the contactOpt-out contacts automatically when unsubscribed.
Properties:
contact_id (required): The ID of the contact to deleteSet up segmented marketing lists automatically.
Properties:
list_name (required): The name of the contact listRetrieves a contact in a list by email.
Properties:
contact_list_id (required): The ID of the contact listemail (required): The email address to search forRetrieves a contact in a list by phone number.
Properties:
contact_list_id (required): The ID of the contact listphone_number (required): The phone number to search forCheck if a marketing list exists before adding contacts.
Properties:
For more detailed information about the ClickSend API, visit the Official ClickSend API Documentation.
Sign up for a free account at ClickSend Signup to get your API credentials and start testing the integration.
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:
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]"
}