View as Markdown
VBOUT icon

VBOUT ACTION

Create Social Media Message

This action creates a new post on social media. See the documentation
  • Action
  • Writes data
  • API key
  • SDK
  • MCP

IMPLEMENTATION

Call this tool

Connect a user's VBOUT account once, then configure and run Create Social Media 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: "vbout-create-social-media-message",
  externalUserId: "{external_user_id}", // any stable ID for this user in your system
  configuredProps: {
    vbout: { authProvisionId: "apn_xxxxxxx" },
    message: "Message",
    channel: "Channel",
  },
})

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.

Create Social Media Message inputs
Property Type Description
message Message string
The post message to be scheduled/sent.
Required
channel Channel string
The channel which the post will be sent to.
Required Dynamic
photo Photo string
Link of the photo which will be attached to the post. E.g. https://example.org/image.png
Optional
isScheduled Is Scheduled boolean
This flag will make the post to be scheduled for future.
Optional
scheduledDatetime Scheduled Datetime string
The date and time to schedule the campaign. Date format accepted: m/d/Y | Y-m-d
Optional
trackableLinks Trackable Links boolean
Convert all links inside message to short urls.
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
vbout-create-social-media-message
Version
0.0.3
App
VBOUT
Authentication
API key
Read-only
No
Destructive
No
Open world
Yes