Salesforce → SMS.
Text a customer the moment a Salesforce record changes — from a Flow's HTTP Callout or an Outbound Message, straight into an ingress URL.
Create the integration
In the portal → ERP Connections pick the Salesforce preset, or via API:
curl -X POST https://api.mobileapiconnect.com/v1/ingress \ -H "Authorization: Bearer sk_live_YOUR_KEY" \ -H "Content-Type: application/json" \ -d '{"name":"Salesforce","preset":"salesforce"}'
Field mapping
| SMS field | JSON key |
|---|---|
| to (number) | Phone |
| text (message) | Body |
| ref | Id |
Call it from a Flow
Build a record-triggered Flow → add an HTTP Callout (or Apex action). Configure a named credential / external service pointing at your ingress URL, method POST, JSON body:
{
"Phone": "{!$Record.Contact.MobilePhone}",
"Body": "Your order {!$Record.OrderNumber} has shipped.",
"Id": "{!$Record.Id}"
}No-code alternative: a Workflow Outbound Message or a tool like Zapier/Make can POST the same JSON to the ingress URL.
Test it
Fire the Flow on a test record. The ingress returns 202 and the SMS sends. Watch it in the portal → Messages.