Official Zapier integration for seven.io — send SMS and text-to-speech calls, receive SMS via webhook, run phone-number lookups (HLR, MNP, CNAM, format), and query analytics & journal data.
Source of truth for the seven integration on the Zapier Developer Platform
(integration ID 139390, slug Sms77). Migrated from the Visual Builder on
2026-04-21; further development happens from this repo via the Zapier CLI.
Triggers
sms_mo— incoming SMS (inbound webhook)voice_call— incoming voice call (inbound webhook)rcs— any RCS event (inbound message, delivery/read status, IS_TYPING, suggestion response, user file, location) via inbound webhook
Creates
send_sms— send an SMSsend_rcs— send an RCS message (plain text or rich content via JSON)delete_rcs— revoke a not-yet-delivered RCS messagesend_rcs_event— send an RCS conversation event (IS_TYPING/READ)voice— place a text-to-speech callhlr— HLR phone-number lookupmnp— MNP (number-portability) lookupcnam— CNAM (caller-name) lookupnumber_format— format / validate a phone numberregister_webhook— subscribe a webhook on the seven side
Searches
analytics— pull analytics datajournal— query the seven journal (sent messages, status, etc.)
Authentication is OAuth 2.0 against https://oauth.seven.io.
- Node.js
>= 22(matchespackage.jsonengines and Zapier's current runtime) - A Zapier developer account with access to the
sevenintegration - The Zapier Platform CLI:
npm install -g zapier-platform-cli zapier-platform login
git clone git@github.com:seven-io/seven-zapier.git
cd seven-zapier
npm install
cp .env.example .env
# fill in CLIENT_ID, CLIENT_SECRET, ACCESS_TOKEN, REFRESH_TOKEN.zapierapprc is committed and already links this checkout to integration
139390. No zapier-platform link / register needed.
# Run the Jest test suite. NOTE: the generated tests hit the real seven.io API
# and require a valid ACCESS_TOKEN / REFRESH_TOKEN in .env to pass. They are
# intentionally not part of CI — treat them as a local smoke-test tool.
npm test
# Validate the integration definition against the Zapier schema
zapier-platform validate
# Invoke a trigger/create/search against the real seven.io API without pushing
zapier-platform invoke creates send_sms --inputData '{"to":"+49...","text":"hi"}'
# Tail logs from the live integration while triggering Zaps
zapier-platform logsVersion bumps + zapier-platform push are automated via a GitHub Actions
Release workflow you trigger manually. Promote and migrate stay on your
laptop because they touch real user Zaps.
Full step-by-step: RELEASING.md. Read it before your first release.
TL;DR:
- GitHub → Actions → Release → Run workflow → pick bump type.
- Test the new private version on your own Zapier account.
zapier-platform promote <new-version>— default for new users.zapier-platform migrate <old-version> <new-version>— move existing users.
Two GitHub Actions workflows live in .github/workflows/:
pr.yml— runs on every PR againstmainand on pushes tomain. Installs deps and runszapier-platform validate. No secrets needed.release.yml—workflow_dispatchonly. Bumps the version (patch / minor / major), tags it, and pushes to Zapier. Requires the repository secretZAPIER_DEPLOY_KEY.
- Log in to the Zapier CLI locally:
zapier-platform login - Grab the deploy key from
~/.zapierrc(thedeployKeyfield) - In GitHub: Settings → Secrets and variables → Actions → New repository
secret, name it
ZAPIER_DEPLOY_KEY, paste the value.
Without this secret the release workflow will fail at the push step, but the version bump and tag will still have been created — so rerun after adding it or clean up the orphan tag manually.
scripting.js plus the legacy block in index.js keep compatibility with
the behavior the integration had in the Visual Builder. Rewriting those pieces
as native CLI code is tracked as a long-term improvement — no action needed
for day-to-day changes.
- Code comments in English.
- Never push with
--no-verify. - Do not commit
.env(already gitignored). .zapierapprcstays committed so checkouts are linked out of the box.
- Integration dashboard: https://developer.zapier.com/app/139390/versions
- Public app listing: https://zapier.com/apps/seven/integrations
- seven API docs: https://docs.seven.io
- Zapier Platform CLI docs: https://docs.zapier.com/platform/reference/cli-docs