Outreach ACTION
Create Account
Creates an account within Outreach. See the documentation
- Action
- Writes data
- OAuth
- SDK
- MCP
IMPLEMENTATION
Call this tool
Connect a user's Outreach account once, then configure and run Create Account 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: "outreach-create-account",
externalUserId: "{external_user_id}", // any stable ID for this user in your system
configuredProps: {
outreach: { authProvisionId: "apn_xxxxxxx" },
buyerIntentScore: "Buyer Intent Score",
companyType: "Company Type",
},
})
console.log(result)curl -X POST https://api.pipedream.com/v1/connect/{project_id}/actions/run \
-H "Content-Type: application/json" \
-H "X-PD-Environment: production" \
-H "Authorization: Bearer {access_token}" \
-d '{
"external_user_id": "{external_user_id}",
"id": "outreach-create-account",
"configured_props": {
"outreach": { "authProvisionId": "apn_xxxxxxx" },
"buyerIntentScore": "Buyer Intent Score",
"companyType": "Company Type"
}
}'// accessToken: mint a short-lived token with the Connect SDK — see the MCP guide
const transport = new StreamableHTTPClientTransport(
new URL("https://remote.mcp.pipedream.net/v3"),
{
requestInit: {
headers: {
Authorization: `Bearer ${accessToken}`,
"x-pd-project-id": "{project_id}",
"x-pd-environment": "production",
"x-pd-external-user-id": "{external_user_id}", // any stable ID for this user in your system
"x-pd-app-slug": "outreach",
},
},
},
)
const mcp = new Client({ name: "my-agent", version: "1.0.0" })
await mcp.connect(transport)
const { tools } = await mcp.listTools()
// listTools() hands your model this tool's input schema, so it can
// fill the arguments itself:
const result = await mcp.callTool({
name: "outreach-create-account",
arguments: {
buyerIntentScore: "Buyer Intent Score",
companyType: "Company Type",
},
})SCHEMA
Inputs
Pipedream supplies the connected account. Your application provides the operation-specific values below. Dynamic inputs are resolved against that user's account.
| Property | Type | Description |
|---|---|---|
buyerIntentScore Buyer Intent Score | string | A custom score given to measure the quality of the account. Optional |
companyType Company Type | string | A description of the company's type (e.g. "Public Company"). Optional |
customId Custom Id | string | A custom ID for the account, often referencing an ID in an external system. Optional |
description Description | string | A custom description of the account. Optional |
domain Domain | string | The company's website domain (e.g. "www.acme.com"). Optional |
externalSource External Source | string | The source of the resource's creation (e.g. "outreach-api"). Optional |
followers Followers | integer | The number of followers the company has listed on social media. Optional |
foundedAt Founded At | string | The founding date of the company. Format: 'YYYY-MM-DDTHH:MM:SS.UUUZ' Optional |
industry Industry | string | A description of the company's industry (e.g. "Manufacturing"). Optional |
linkedInEmployees Linked In Employees | integer | The number of employees listed on the company's LinkedIn URL. Optional |
linkedInUrl LinkedIn URL | string | The company's LinkedIn URL. Optional |
locality Locality | string | The company's primary geographic region (e.g. "Eastern USA"). Optional |
name Name | string | The name of the company (e.g. "Acme Corporation"). Required |
named Named | boolean | A boolean value determining whether this is a "named" account or not. Only named accounts will show up on the collection index. Optional |
naturalName Natural Name | string | The natural name of the company (e.g. "Acme"). Optional |
numberOfEmployees Number Of Employees | integer | The number of employees working at the company. Optional |
sharingTeamId Sharing Team Id | string | The ID of the sharing team associated with this object. Access is currently in beta. Optional |
tags Tags | string[] | A list of tag values associated with the account (e.g. ["Enterprise", "Tier 1"]). Optional |
websiteUrl Website URL | string | The company's website URL (e.g. "https://www.acme.com/contact"). Optional |
custom1 Custom 1 | string | The value of the first custom field. Optional |
custom2 Custom 2 | string | The value of the second custom field. Optional |
custom3 Custom 3 | string | The value of the third custom field. Optional |
custom4 Custom 4 | string | The value of the fourth custom field. Optional |
custom5 Custom 5 | string | The value of the fifth custom field. Optional |
custom6 Custom 6 | string | The value of the sixth custom field. Optional |
custom7 Custom 7 | string | The value of the seventh custom field. Optional |
custom8 Custom 8 | string | The value of the eight custom field. Optional |
custom9 Custom 9 | string | The value of the ninth custom field. Optional |
custom10 Custom 10 | string | The value of the 10th custom field. Optional |
custom11 Custom 11 | string | The value of the 11th custom field. Optional |
custom12 Custom 12 | string | The value of the 12th custom field. Optional |
custom13 Custom 13 | string | The value of the 13th custom field. Optional |
custom14 Custom 14 | string | The value of the 14th custom field. Optional |
custom15 Custom 15 | string | The value of the 15th custom field. Optional |
custom16 Custom 16 | string | The value of the 16th custom field. Optional |
custom17 Custom 17 | string | The value of the 17th custom field. Optional |
custom18 Custom 18 | string | The value of the 18th custom field. Optional |
custom19 Custom 19 | string | The value of the 19th custom field. Optional |
custom20 Custom 20 | string | The value of the 20th custom field. 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
- outreach-create-account
- Version
- 0.0.2
- App
- Outreach
- Authentication
- OAuth
- Read-only
- No
- Destructive
- No
- Open world
- Yes
- Source
- View on GitHub ↗