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
- A Gravity SMS API key — dashboard.
- A connected RingCentral account — Connecting RingCentral.
Send an SMS
Add the HTTP module → Make a request:
| Field | Value |
|---|---|
| URL | https://smsgateway-api.onrender.com/v1/sms/send |
| Method | POST |
| Headers | Authorization: Bearer YOUR_API_KEYContent-Type: application/json |
| Body type | Raw → JSON |
| Request content | JSON — 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
- Add a Webhooks module → Custom webhook as the scenario's trigger.
- Create a new hook and copy the URL Make generates.
- Paste it into your Gravity SMS app's Webhook URL in the dashboard.
- 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
- Make landing page
- Generic Webhook Recipe — full payload and response reference