n8n-nodes-inalambria-express
v0.1.0
Published
n8n community node for sending SMS via Inalambria Express API
Maintainers
Readme
n8n-nodes-inalambria-express
This is an n8n community node that allows you to send SMS messages using the Inalambria Express API.
n8n is a fair-code licensed workflow automation platform.
Availability
| Country | Status | |---------|--------| | Colombia | Available |
Note: Inalambria Express currently operates in Colombia.
Installation
Follow the installation guide in the n8n community nodes documentation.
npm
npm install n8n-nodes-inalambria-expressIn n8n
- Go to Settings > Community Nodes
- Select Install
- Enter
n8n-nodes-inalambria-expressand confirm
Credentials
To use this node, you need an API key from Inalambria Express:
- Log in to your Inalambria Express account
- Navigate to API settings to obtain your API key
- In n8n, create new credentials of type Inalambria Express API
- Paste your API key
Operations
Message
| Operation | Description | |-----------|-------------| | Send SMS | Send an SMS to one or multiple recipients | | Send Batch | Send different SMS messages to different groups of recipients | | Send Template | Send personalized SMS using templates with variables | | Get History | Retrieve message history with optional filters |
Account
| Operation | Description | |-----------|-------------| | Get Balance | Get current credit balance and usage statistics |
Job
| Operation | Description | |-----------|-------------| | Get Status | Get the status of an async job by ID | | Get Pending | List all pending async jobs |
Usage Examples
Send SMS
Send a simple SMS to multiple recipients:
- Add the Inalambria Express node
- Select Message resource and Send SMS operation
- Enter your sender ID (e.g., "MyCompany")
- Add recipient phone numbers (E.164 format: +573001234567)
- Enter your message content
Send Template SMS
Send personalized messages using variables:
- Select Send Template operation
- Set your template message:
Hello {{name}}, your code is {{code}} - Add recipients with their variables as JSON:
{ "+573001234567": {"name": "Juan", "code": "1234"}, "+573009876543": {"name": "Maria", "code": "5678"} }
Async Operations
For large batches, enable async mode:
- Set Async to
truein additional options - The node returns a
jobId - Use Job > Get Status to check progress
Compatibility
- n8n version: 0.200.0 or later
- Node.js version: 18.x or later
