View as Markdown
Sendoso icon

Sendoso ACTION

Send a Physical Gift

Send a physical gift. See the documentation
  • Action
  • Writes data
  • OAuth
  • SDK
  • MCP

IMPLEMENTATION

Call this tool

Connect a user's Sendoso account once, then configure and run Send a Physical Gift 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: "sendoso-send-physical-gift",
  externalUserId: "{external_user_id}", // any stable ID for this user in your system
  configuredProps: {
    sendoso: { authProvisionId: "apn_xxxxxxx" },
    touchId: 10,
    viaFrom: "Via From",
  },
})

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 Physical Gift inputs
Property Type Description
touchId Touch ID integer
The ID of the Touch
Required Dynamic
viaFrom Via From string
Application name or sender identifier
Required
email Email string
The email address of the recipient
Required
name Name string
The name of the recipient
Required
address Address string
The address of the recipient (for physical gifts)
Required
city City string
The city of the recipient
Required
state State string
The state of the recipient.
Required
zip Zip string
The zip code of the recipient
Required
country Country string
The country of the recipient
Required
customMessage Custom Message string
A custom message to include with the send
Optional
confirmAddress Confirm Address boolean
Whether to confirm the recipient's address (for physical gifts). Set to false if providing complete address
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
sendoso-send-physical-gift
Version
0.0.1
App
Sendoso
Authentication
OAuth
Read-only
No
Destructive
No
Open world
Yes