MMobile API Connect

← All integrations

Salesforce

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.

1

Create the integration

In the portal → ERP Connections pick the Salesforce preset, or via API:

curl
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"}'
2

Field mapping

SMS fieldJSON key
to (number)Phone
text (message)Body
refId
3

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:

callout 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.

4

Test it

Fire the Flow on a test record. The ingress returns 202 and the SMS sends. Watch it in the portal → Messages.

All product names, logos, and brands are property of their respective owners. Use of these names does not imply any affiliation with or endorsement by them.