View as Markdown
Quo icon

Quo ACTION

Send a Text Message

Send a text message from one of your OpenPhone numbers to a recipient. Use List Phone Numbers (or List From Options) to find a valid from value. Example: call with from="PN123abc", to="+15551234567", content="Hi, following up on your request." → sends the message and returns the created message record. See the documentation
  • Action
  • Writes data
  • API key
  • SDK
  • MCP

IMPLEMENTATION

Call this tool

Connect a user's Quo account once, then configure and run Send a Text Message 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: "openphone-send-message",
  externalUserId: "{external_user_id}", // any stable ID for this user in your system
  configuredProps: {
    openphone: { authProvisionId: "apn_xxxxxxx" },
    from: "From",
    to: "To",
  },
})

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 a Text Message inputs
Property Type Description
from From string
The sender's phone number. Can be either your OpenPhone phone number ID or the full phone number in E.164 format.
Required Dynamic
to To string
Recipient phone number in E.164 format.
Required
content Content string
The text content of the message to be sent.
Required

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
openphone-send-message
Version
0.0.6
App
Quo
Authentication
API key
Read-only
No
Destructive
No
Open world
Yes