HTTP RECIPE

Make

Use Gravity SMS in Make scenarios via the built-in HTTP module (send) and Webhooks module (receive). A native Make app is on the roadmap.

Prerequisites

Send an SMS

Add the HTTP module → Make a request:

FieldValue
URLhttps://smsgateway-api.onrender.com/v1/sms/send
MethodPOST
HeadersAuthorization: Bearer YOUR_API_KEY
Content-Type: application/json
Body typeRaw → JSON
Request contentJSON — see below
Request content
{
"to": "+15551234567",
"from": "+15559876543",
"body": "Hello from Make"
}

Map Make's variable picker into the JSON values to use upstream fields.

Trigger a scenario on inbound SMS

  1. Add a Webhooks module → Custom webhook as the scenario's trigger.
  2. Create a new hook and copy the URL Make generates.
  3. Paste it into your Gravity SMS app's Webhook URL in the dashboard.
  4. In Make, click Redetermine data structure and send a test SMS — Make captures the payload so downstream modules see all fields.

Payload shape is the same as everywhere else — see Generic Webhook Recipe.

Consent (TCPA / similar) is your responsibility
"Send SMS on every new row" patterns can violate consent rules in most jurisdictions. Verify each recipient has opted in before your scenario sends.

Related