View as Markdown
Aero Workflow icon

Aero Workflow ACTION

Create Company

Creates a company See the docs here
  • Action
  • Writes data
  • API key
  • SDK
  • MCP

IMPLEMENTATION

Call this tool

Connect a user's Aero Workflow account once, then configure and run Create Company 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: "aero_workflow-create-company",
  externalUserId: "{external_user_id}", // any stable ID for this user in your system
  configuredProps: {
    aero_workflow: { authProvisionId: "apn_xxxxxxx" },
    companyName: "Company Name",
    defaultEmailAddress: "Default Email Address",
  },
})

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 Company inputs
Property Type Description
companyName Company Name string
Company name
Required
defaultEmailAddress Default Email Address string
Default email address
Optional
phone Phone string
Phone
Optional
website Website string
Website
Optional
accountNumber Account Number string
Account number
Optional
fax Fax string
Fax
Optional
hourlyBillableRate Hourly Billable Rate integer
Hourly billable rate
Optional
monthlyFixedFee Monthly Fixed Fee integer
Monthly fixed fee
Optional
contactFirstName Contact First Name string
Contact first name
Optional
contactLastName Contact Last Name string
Contact last name
Optional
addressLine1 Company Address Line 1 string
Address line 1
Optional
addressLine2 Company Line 2 string
Address line 2
Optional
addressLine3 Company Line 3 string
Address line 3
Optional
addressCity City (Address) string
Address city
Optional
addressState State (Address) string
Address state
Optional
addressPostalCode Postal Code (Address) string
Address postal code
Optional
addressCountry Country (Address) string
Address country
Optional
notes Notes string
Company notes
Optional
isLead Is Lead boolean
Set true if it is a lead
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
aero_workflow-create-company
Version
0.0.2
App
Aero Workflow
Authentication
API key
Read-only
No
Destructive
No
Open world
Yes