View as Markdown
Zoho SalesIQ icon

Zoho SalesIQ ACTION

Create Article

Create a new article. See the documentation
  • Action
  • Writes data
  • OAuth
  • SDK
  • MCP

IMPLEMENTATION

Call this tool

Connect a user's Zoho SalesIQ account once, then configure and run Create Article 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_salesiq-create-article",
  externalUserId: "{external_user_id}", // any stable ID for this user in your system
  configuredProps: {
    zoho_salesiq: { authProvisionId: "apn_xxxxxxx" },
    screenName: "Screen Name",
    departmentId: "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.

Create Article inputs
Property Type Description
screenName Screen Name string
Screen name associated with the account
Required Dynamic
departmentId Department string
Specify the Department ID with which the article is associated.
Required Dynamic
categoryId Category string
Specify the Category ID with which the article is associated.
Required Dynamic
title Title string
The title of the article
Required
content Content string
The HTML content available in the article
Required
published Published boolean
Specify the publishing status of the article
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
zoho_salesiq-create-article
Version
0.0.2
App
Zoho SalesIQ
Authentication
OAuth
Read-only
No
Destructive
No
Open world
Yes