View as Markdown
UiPath Automation Hub icon

UiPath Automation Hub ACTION

Update Idea

Modify an existing automation idea's details. See the documentation
  • Action
  • Writes data
  • Destructive
  • API key
  • SDK
  • MCP

IMPLEMENTATION

Call this tool

Connect a user's UiPath Automation Hub account once, then configure and run Update Idea 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: "uipath_automation_hub-update-idea",
  externalUserId: "{external_user_id}", // any stable ID for this user in your system
  configuredProps: {
    uipath_automation_hub: { authProvisionId: "apn_xxxxxxx" },
    automationId: 10,
    processName: "Process 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.

Update Idea inputs
Property Type Description
automationId Idea Id integer
The Id of the idea.
Required Dynamic
processName Process Name string
Name of the idea.
Optional
processDescription Process Description string
Description of the idea.
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
uipath_automation_hub-update-idea
Version
0.0.2
App
UiPath Automation Hub
Authentication
API key
Read-only
No
Destructive
Yes
Open world
Yes