View as Markdown
Aero Workflow icon

Aero Workflow ACTION

Create Email Aero

Creates an email aero 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 Email Aero 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-email-aero",
  externalUserId: "{external_user_id}", // any stable ID for this user in your system
  configuredProps: {
    aero_workflow: { authProvisionId: "apn_xxxxxxx" },
    assignedTo: "Assigned To",
    aeroType: "Aero Type",
  },
})

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 Email Aero inputs
Property Type Description
assignedTo Assigned To string
Team member whom the task will be assigned to
Required Dynamic
aeroType Aero Type string
Aero type
Required Dynamic
contact Contact string
Contact
Optional Dynamic
company Company string
Company
Optional Dynamic
fullProjectName Project string
Project
Optional Dynamic
hat Hat string
Hat
Optional Dynamic
scheduledStartDate Scheduled Start Date string
Scheduled start date. Must be in ISO format, e.g. 2023-03-30T11:35:07.983Z
Required
scheduledTotalHours Scheduled Total Hours integer
Scheduled total hours, max 24
Required
scheduledHours Scheduled Hours integer
Scheduled hours, max 23
Required
scheduledMinutes Scheduled Minutes integer
Scheduled minutes, max 59
Required
subject Subject string
Subject
Required
status Status string
Status
Required
priority Priority string
Priority
Required
dueDate Due Date string
Due date. Must be in ISO format, e.g. 2023-03-30T11:35:07.983Z
Required
fromEmail From Email string
From email
Optional
toEmail To Email string
To email
Optional
ccEmail Cc Email string
Cc email
Optional
bccEmail Bcc Email string
Bcc email
Optional
comments Comments string
Comments
Optional
body Body string
Body
Optional
incomingEmail Incoming Email boolean
Is incoming email
Optional
billable Billable boolean
Is billable
Optional
fixedFee Fixed Fee boolean
Is fixed fee
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-email-aero
Version
0.0.2
App
Aero Workflow
Authentication
API key
Read-only
No
Destructive
No
Open world
Yes