View as Markdown
D7 SMS icon

D7 SMS ACTION

Send SMS

Sending sms via D7 networks! See the docs
  • Action
  • Writes data
  • OAuth
  • SDK
  • MCP

IMPLEMENTATION

Call this tool

Connect a user's D7 SMS account once, then configure and run Send SMS from your backend or agent.

import { PipedreamClient } from "@pipedream/sdk"

const pd = new PipedreamClient({
  projectId: process.env.PIPEDREAM_PROJECT_ID!,
  clientId: process.env.PIPEDREAM_CLIENT_ID!,
  clientSecret: process.env.PIPEDREAM_CLIENT_SECRET!,
  projectEnvironment: "production",
})

const result = await pd.actions.run({
  id: "d7_networks-send-sms",
  externalUserId: "{external_user_id}", // any stable ID for this user in your system
  configuredProps: {
    d7_networks: { authProvisionId: "apn_xxxxxxx" },
    originator: "Originator",
    recipients: ["Recipients"],
  },
})

console.log(result)

SCHEMA

Inputs

Pipedream supplies the connected account. Your application provides the operation-specific values below. Dynamic inputs are resolved against that user's account.

Send SMS inputs
Property Type Description
originator Originator string
The Sender/Header of a message. Brand name with a maximum character limit of 11 or your mobile number with country code. E.g. Pipedream
Required
recipients Recipients string[]
Mobile Numbers to send SMS.
Required
content Content string
Content of the message.
Required
channel Channel string
Messaging Channel (SMS, WhatsApp, Viber, Telegram, etc)
Optional
reportUrl Report URL string
Your call back server URL to recieve delivery status
Optional
dataCoding Data Encoding string
Set as text for normal GSM 03.38 characters (English, normal characters). Set as unicode for non GSM 03.38 characters (Arabic, Chinese, Hebrew, Greek like regional languages and Unicode characters). Set as auto so we will find the data_coding based on your content.
Optional
msgType Message Type string
Set as text for normal GSM 03.38 characters (English, normal characters). Set as unicode for non GSM 03.38 characters (Arabic, Chinese, Hebrew, Greek like regional languages and Unicode characters). Set as auto so we will find the data_coding based on your content.
Optional

REFERENCE

Tool details

Behavior hints are published with the component in the Pipedream registry and surface as MCP tool annotations, so an agent can reason about a tool before it calls it.

Registry key
d7_networks-send-sms
Version
0.0.2
App
D7 SMS
Authentication
OAuth
Read-only
No
Destructive
No
Open world
Yes