View as Markdown
UiPath Automation Hub icon

UiPath Automation Hub ACTION

Create Idea

Submit a new automation idea. See the documentation
  • Action
  • Writes data
  • API key
  • SDK
  • MCP

IMPLEMENTATION

Call this tool

Connect a user's UiPath Automation Hub account once, then configure and run Create 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-create-idea",
  externalUserId: "{external_user_id}", // any stable ID for this user in your system
  configuredProps: {
    uipath_automation_hub: { authProvisionId: "apn_xxxxxxx" },
    processName: "Process Name",
    processDescription: "Process Description",
  },
})

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 Idea inputs
Property Type Description
processName Process Name string
Name of the idea.
Required
processDescription Process Description string
Description of the idea.
Required
categoryId Category Id integer
The Id of the category.
Required Dynamic
rules Rules integer
How rule-based is your task?
Required
inputType Input Type integer
How would you describe the input data for your task/process?
Required
inputQuality Input Quality integer
How would you describe the structure of your input data?
Required
stability Stability integer
Are you aware of any expected changes to the way you currently perform the activity or process in the following 6 months?
Required
documentation Documentation integer
Do you have any documentation regarding this process/activity?
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
uipath_automation_hub-create-idea
Version
0.0.2
App
UiPath Automation Hub
Authentication
API key
Read-only
No
Destructive
No
Open world
Yes