Package Information
Downloads: 0 weeklyΒ /Β 0 monthly
Latest Version: 0.0.6
Author: Henrique Corraro
Available Nodes
Documentation
LigueLead β n8n Custom Node
Custom n8n node for integration with the LigueLead API, allowing the sending of SMS messages and voice calls using pre-uploaded audio.
This node was designed with a strong focus on extensibility, easy maintenance, and clean architecture, making it simple to add new actions without modifying the core node logic.
π Features
Currently, the node supports:
- π© SMS sending
- π Voice calls using a
voice_upload_id
π Credentials (LigueLead API)
| Field | Description |
|---|---|
| Base URL | https://api.liguelead.com.br/v1 |
| API Token | Authentication token |
| App ID | Application identifier |
Headers sent automatically:
api-token: <API_TOKEN>
app-id: <APP_ID>
βοΈ How to Use
- Create the LigueLead API credential
- Drag the LigueLead node into your workflow
- Select the desired operation
π§© Operations
π© Send SMS (sendSms)
Required fields:
- phones: string[]
- message: string
- title: string
Optional field:
- isFlash: boolean (SMS type)
Example:
{
"phones": ["5511999999999"],
"message": "Hello!",
"title": "Test"
}
π Send Voice Call (sendVoice)
Required fields:
- phones: string[]
- voice_upload_id: number
- title: string
Example:
{
"title": "July Campaign",
"voice_upload_id": 123,
"phones": ["5511999999999"]
}