View as Markdown
Zoho Survey icon

Zoho Survey ACTION

Send Email Invitation

Sends an email invitation with Zoho Survey.
  • Action
  • Writes data
  • OAuth
  • SDK
  • MCP

IMPLEMENTATION

Call this tool

Connect a user's Zoho Survey account once, then configure and run Send Email Invitation 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: "zoho_survey-send-email-invitation",
  externalUserId: "{external_user_id}", // any stable ID for this user in your system
  configuredProps: {
    zoho_survey: { authProvisionId: "apn_xxxxxxx" },
    portalId: "Portal",
    groupId: "Department",
  },
})

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 Email Invitation inputs
Property Type Description
portalId Portal string
Identifier of a portal
Required Dynamic
groupId Department string
Unique identifier of a department
Required Dynamic
surveyId Survey string
Identifier of a survey
Required Dynamic
collectorId Collector string
Identifier of a collector
Required Dynamic
distributionId Trigger Invitation string
Identifier of a distribution
Required Dynamic

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
zoho_survey-send-email-invitation
Version
0.0.5
App
Zoho Survey
Authentication
OAuth
Read-only
No
Destructive
No
Open world
Yes