View as Markdown
Waboxapp icon

Waboxapp ACTION

Send Text Message

Send a WhatsApp message to a specific phone number. See the documentation
  • Action
  • Writes data
  • API key
  • SDK
  • MCP

IMPLEMENTATION

Call this tool

Connect a user's Waboxapp account once, then configure and run Send 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: "waboxapp-send-text-message",
  externalUserId: "{external_user_id}", // any stable ID for this user in your system
  configuredProps: {
    waboxapp: { authProvisionId: "apn_xxxxxxx" },
    uid: "UID",
    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 Text Message inputs
Property Type Description
uid UID string
Your account phone number with international code. E.g. 34666123456
Required
to To string
Recipient's phone number with international code. E.g. 34666789123
Required
customUid Custom UID string
Your custom unique ID for the new message to be send. Must be unique. Will be sent back to you on ACK events
Required
text Message Text string
The text message to send
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
waboxapp-send-text-message
Version
0.0.2
App
Waboxapp
Authentication
API key
Read-only
No
Destructive
No
Open world
Yes