View as Markdown
Connectwise PSA icon

Connectwise PSA ACTION

Create Company

Creates a new company in Connectwise. See the documentation
  • Action
  • Writes data
  • API key
  • SDK
  • MCP

IMPLEMENTATION

Call this tool

Connect a user's Connectwise PSA 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: "connectwise_psa-create-company",
  externalUserId: "{external_user_id}", // any stable ID for this user in your system
  configuredProps: {
    connectwise_psa: { authProvisionId: "apn_xxxxxxx" },
    name: "Company Name",
    identifier: "Identifier",
  },
})

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
name Company Name string
The name of the new company
Required
identifier Identifier string
A unique identifier for the company
Required
types Types integer[]
Select one or more company types
Required Dynamic
status Status integer
The status of the company
Required Dynamic
site Site Name string
The site name for the company
Required
address1 Address Line 1 string
First line of the company's address
Optional
address2 Address Line 2 string
Second line of the company's address
Optional
city City string
City of the company
Optional
state State string
State of the company
Optional
zip Zip string
Zip code of the company
Optional
country Country integer
The identifier of a country
Optional Dynamic
phone Phone string
Phone number of the company
Optional
website Website string
Website of the company
Optional
market Market integer
The market of the company
Optional Dynamic
territory Territory integer
The territory location the company
Optional Dynamic

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
connectwise_psa-create-company
Version
0.0.4
App
Connectwise PSA
Authentication
API key
Read-only
No
Destructive
No
Open world
Yes