Automate SMS in Pabbly Connect workflows using your real phone number. Connect via webhooks — no per-message fees.
Pabbly Connect is a cost-effective alternative to Zapier for workflow automation. Pairfon connects to Pabbly through webhooks, letting you trigger workflows on inbound SMS and send outbound texts as HTTP actions. All messages go through your Android phone's SIM card.
Pabbly Connect doesn't have a native Pairfon integration (yet), but the webhook method works perfectly and takes about 5 minutes to set up.
For inbound SMS (triggers): Pairfon sends a webhook to Pabbly whenever your phone receives a text. Pabbly catches it and runs your workflow.
For outbound SMS (actions): Your Pabbly workflow calls Pairfon's REST API via an HTTP request action to send a text through your phone.
In Pabbly Connect, create a new workflow. Select Webhook / API as the trigger app. Choose "Catch Webhook" as the trigger event. Copy the webhook URL that Pabbly generates.
In your Pairfon dashboard, go to API & Webhooks. Click "+ Add Webhook" and paste the Pabbly webhook URL. Select which devices and SIMs should trigger it. Save.
Send a text to your paired phone number. Pairfon will forward it to Pabbly. In Pabbly, click "Capture Response" to see the payload and map the fields in subsequent actions.
The webhook payload from Pairfon looks like this:
{
"event": "sms.received",
"from": "+15551234567",
"to": "+15559876543",
"body": "I'd like to book an appointment",
"device": "Office Phone",
"sim": "SIM 1",
"timestamp": "2026-04-08T14:30:00Z"
}
In your Pabbly workflow, add a new action. Select API / Webhook by Pabbly. Choose the "POST" method.
Set the URL to https://web.pairfon.com/api/v1/sms/send. Add a header: Authorization: Bearer your-api-key. Set Content-Type to application/json.
Body:
{
"to": "{{recipient_number}}",
"body": "{{message_text}}",
"deviceId": "your-device-id"
}
Replace the double-brace values with mapped fields from your trigger step.
GET /api/v1/devices endpoint.
14-day free trial. Set up your first webhook workflow in under 10 minutes.
Start Free Trial