View as Markdown
Waboxapp icon

Waboxapp ACTION

Send Image

Send an image in WhatsApp 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 Image 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-image",
  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 Image 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
url Image URL string
URL of the image to send
Required
caption Caption string
Title to show on the preview
Optional
description Description string
Extended description to show on the preview
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
waboxapp-send-image
Version
0.0.2
App
Waboxapp
Authentication
API key
Read-only
No
Destructive
No
Open world
Yes