View as Markdown
DocsAutomator icon

DocsAutomator ACTION

Create Document

Generate a new document from a pre-existing template. See the documentation
  • Action
  • Writes data
  • API key
  • SDK
  • MCP

IMPLEMENTATION

Call this tool

Connect a user's DocsAutomator account once, then configure and run Create Document 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: "docsautomator-create-document",
  externalUserId: "{external_user_id}", // any stable ID for this user in your system
  configuredProps: {
    docsautomator: { authProvisionId: "apn_xxxxxxx" },
    automationId: "Automation ID",
    documentName: "Document Name",
  },
})

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 Document inputs
Property Type Description
automationId Automation ID string
The ID of the automation to use for generating the document
Required Dynamic
documentName Document Name string
The name of the generated document
Optional
recId Record ID string
Record ID for Airtable (Airtable only — data not required)
Optional
taskId Task ID string
Task ID for ClickUp (ClickUp only — data not required)
Optional
data Data object
Placeholders data for the template. See the documentation for further information.
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
docsautomator-create-document
Version
0.0.2
App
DocsAutomator
Authentication
API key
Read-only
No
Destructive
No
Open world
Yes