← Aero Workflow

Create Email Aero with Aero Workflow API

Pipedream makes it easy to connect APIs for Aero Workflow and 1400+ other apps remarkably fast.

Trigger workflow on
HTTP requests, schedules and app events
Next, do this
Create Email Aero with the Aero Workflow API
No credit card required
Into to Pipedream
Watch us build a workflow
Watch us build a workflow
7 min
Watch now ➜

Trusted by 500,000+ developers from startups to Fortune 500 companies

Adyen logo
Brex logo
Carta logo
Checkr logo
Chameleon logo
DevRev logo
LinkedIn logo
Netflix logo
New Relic logo
OnDeck logo
Replicated logo
Scale AI logo
Teamwork logo
Warner Bros. logo
Xendit logo

Developers Pipedream

Getting Started

Create a workflow to Create Email Aero with the Aero Workflow API. When you configure and deploy the workflow, it will run on Pipedream's servers 24x7 for free.

  1. Configure the Create Email Aero action
    1. Connect your Aero Workflow account
    2. Select a Assigned To
    3. Select a Aero Type
    4. Optional- Select a Contact
    5. Optional- Select a Company
    6. Optional- Select a Project
    7. Optional- Select a Hat
    8. Configure Scheduled Start Date
    9. Configure Scheduled Total Hours
    10. Configure Scheduled Hours
    11. Configure Scheduled Minutes
    12. Configure Subject
    13. Select a Status
    14. Select a Priority
    15. Configure Due Date
    16. Optional- Configure From Email
    17. Optional- Configure To Email
    18. Optional- Configure Cc Email
    19. Optional- Configure Bcc Email
    20. Optional- Configure Comments
    21. Optional- Configure Body
    22. Optional- Configure Incoming Email
    23. Optional- Configure Billable
    24. Optional- Configure Fixed Fee
  2. Select a trigger to run your workflow on HTTP requests, schedules or app events
  3. Deploy the workflow
  4. Send a test event to validate your setup
  5. Turn on the trigger

Integrations

Create Email Aero with Aero Workflow API on New Requests from HTTP / Webhook API
HTTP / Webhook + Aero Workflow
 
Try it
Create Email Aero with Aero Workflow API on New Submission from Typeform API
Typeform + Aero Workflow
 
Try it
Create Email Aero with Aero Workflow API on New Submission (Instant) from Jotform API
Jotform + Aero Workflow
 
Try it
Create Email Aero with Aero Workflow API on New Custom Webhook Events from Stripe API
Stripe + Aero Workflow
 
Try it
Create Email Aero with Aero Workflow API on New Scheduled Tasks from Pipedream API
Pipedream + Aero Workflow
 
Try it

Details

This is a pre-built, source-available component from Pipedream's GitHub repo. The component is developed by Pipedream and the community, and verified and maintained by Pipedream.

To contribute an update to an existing component or create a new component, create a PR on GitHub. If you're new to Pipedream component development, you can start with quickstarts for trigger span and action development, and then review the component API reference.

Create Email Aero on Aero Workflow
Description:Creates an email aero [See the docs here](https://api.aeroworkflow.com/swagger/index.html)
Version:0.0.1
Key:aero_workflow-create-email-aero

Code

import app from "../../aero_workflow.app.mjs";
import utils from "../../common/utils.mjs";

export default {
  key: "aero_workflow-create-email-aero",
  version: "0.0.1",
  type: "action",
  name: "Create Email Aero",
  description: "Creates an email aero [See the docs here](https://api.aeroworkflow.com/swagger/index.html)",
  props: {
    app,
    assignedTo: {
      propDefinition: [
        app,
        "assignedTo",
      ],
    },
    aeroType: {
      propDefinition: [
        app,
        "aeroType",
      ],
    },
    contact: {
      propDefinition: [
        app,
        "contact",
      ],
      optional: true,
    },
    company: {
      propDefinition: [
        app,
        "company",
      ],
      optional: true,
    },
    fullProjectName: {
      propDefinition: [
        app,
        "project",
      ],
      optional: true,
    },
    hat: {
      propDefinition: [
        app,
        "hat",
      ],
      optional: true,
    },
    scheduledStartDate: {
      propDefinition: [
        app,
        "scheduledStartDate",
      ],
    },
    scheduledTotalHours: {
      propDefinition: [
        app,
        "scheduledTotalHours",
      ],
    },
    scheduledHours: {
      propDefinition: [
        app,
        "scheduledHours",
      ],
    },
    scheduledMinutes: {
      propDefinition: [
        app,
        "scheduledMinutes",
      ],
    },
    subject: {
      propDefinition: [
        app,
        "subject",
      ],
    },
    status: {
      propDefinition: [
        app,
        "status",
      ],
    },
    priority: {
      propDefinition: [
        app,
        "priority",
      ],
    },
    dueDate: {
      propDefinition: [
        app,
        "dueDate",
      ],
    },
    fromEmail: {
      type: "string",
      label: "From Email",
      description: "From email",
      optional: true,
    },
    toEmail: {
      type: "string",
      label: "To Email",
      description: "To email",
      optional: true,
    },
    ccEmail: {
      type: "string",
      label: "Cc Email",
      description: "Cc email",
      optional: true,
    },
    bccEmail: {
      type: "string",
      label: "Bcc Email",
      description: "Bcc email",
      optional: true,
    },
    comments: {
      type: "string",
      label: "Comments",
      description: "Comments",
      optional: true,
    },
    body: {
      type: "string",
      label: "Body",
      description: "Body",
      optional: true,
    },
    incomingEmail: {
      type: "boolean",
      label: "Incoming Email",
      description: "Is incoming email",
      optional: true,
    },
    billable: {
      propDefinition: [
        app,
        "billable",
      ],
    },
    fixedFee: {
      propDefinition: [
        app,
        "fixedFee",
      ],
    },
  },
  async run ({ $ }) {
    const data = utils.extractProps(this);
    const resp = await this.app.createEmail({
      $,
      data,
    });
    $.export("$summary", `The email(ID: ${resp.id}) has been created successfully.`);
    return resp;
  },
};

Configuration

This component may be configured based on the props defined in the component code. Pipedream automatically prompts for input values in the UI and CLI.
LabelPropTypeDescription
Aero WorkflowappappThis component uses the Aero Workflow app.
Assigned ToassignedTostringSelect a value from the drop down menu.
Aero TypeaeroTypestringSelect a value from the drop down menu.
ContactcontactstringSelect a value from the drop down menu.
CompanycompanystringSelect a value from the drop down menu.
ProjectfullProjectNamestringSelect a value from the drop down menu.
HathatstringSelect a value from the drop down menu.
Scheduled Start DatescheduledStartDatestring

Scheduled start date. Must be in ISO format, e.g. 2023-03-30T11:35:07.983Z

Scheduled Total HoursscheduledTotalHoursinteger

Scheduled total hours, max 24

Scheduled HoursscheduledHoursinteger

Scheduled hours, max 23

Scheduled MinutesscheduledMinutesinteger

Scheduled minutes, max 59

Subjectsubjectstring

Subject

StatusstatusstringSelect a value from the drop down menu:inprogressnotstartedcanceledcompleted
PriorityprioritystringSelect a value from the drop down menu:elevatedcriticalnormal
Due DatedueDatestring

Due date. Must be in ISO format, e.g. 2023-03-30T11:35:07.983Z

From EmailfromEmailstring

From email

To EmailtoEmailstring

To email

Cc EmailccEmailstring

Cc email

Bcc EmailbccEmailstring

Bcc email

Commentscommentsstring

Comments

Bodybodystring

Body

Incoming EmailincomingEmailboolean

Is incoming email

Billablebillableboolean

Is billable

Fixed FeefixedFeeboolean

Is fixed fee

Authentication

Aero Workflow uses API keys for authentication. When you connect your Aero Workflow account, Pipedream securely stores the keys so you can easily authenticate to Aero Workflow APIs in both code and no-code steps.

To get your API Key and Account Number, navigate to Account Settings > Account Profile.

  • If you've already created an API Key it will be listed on this screen.
  • If there is no API Key listed, click the Generate new API Key button.
  • The Account Number (also sometimes called "Account ID") is listed below the API Key

About Aero Workflow

Aero is workflow & practice management built specifically with the modern cloud-based accounting firm in mind.

More Ways to Use Aero Workflow

Triggers

New Company Created Event from the Aero Workflow API

Emit new events when a new company is created. See the docs

 
Try it

Actions

Create Appointment with the Aero Workflow API

Creates an appointment See the docs here

 
Try it
Create Company with the Aero Workflow API

Creates a company See the docs here

 
Try it
Create Contact with the Aero Workflow API

Creates a contact See the docs here

 
Try it
Create Task with the Aero Workflow API

Creates a task See the docs here

 
Try it
Create Vault Entry with the Aero Workflow API

Creates a vault entry for selected company See the docs here

 
Try it

Explore Other Apps

1
-
12
of
1400+
apps by most popular

HTTP / Webhook
HTTP / Webhook
Get a unique URL where you can send HTTP or webhook requests
Node
Node
Anything you can do with Node.js, you can do in a Pipedream workflow. This includes using most of npm's 400,000+ packages.
Schedule
Schedule
Trigger workflows on an interval or cron schedule.
Beta
Python
Python
Anything you can do in Python can be done in a Pipedream Workflow. This includes using any of the 350,000+ PyPi packages available in your Python powered workflows.
Beta
Data Stores
Data Stores
Use Pipedream Data Stores to manage state throughout your workflows.
Telegram Bot
Telegram Bot
Telegram is a cloud-based instant messaging and voice over IP service
OpenAI (ChatGPT)
OpenAI (ChatGPT)
OpenAI is an AI research and deployment company with the mission to ensure that artificial general intelligence benefits all of humanity. They are the makers of popular apps like ChatGPT and DALL·E 2.
Google Sheets
Google Sheets
With Google Sheets, you can create, edit, and collaborate wherever you are
Discord
Discord
Use this app to create a Discord source that emits messages from your guild to a Pipedream workflow.
GitHub
GitHub
Where the world builds software. Millions of developers and companies build, ship, and maintain their software on GitHub—the largest and most advanced development platform in the world.
Formatting
Formatting
Pre-built actions to make formatting and manipulating data within your workflows easier.
Slack
Slack
Slack is a channel-based messaging platform. With Slack, people can work together more effectively, connect all their software tools and services, and find the information they need to do their best work — all within a secure, enterprise-grade environment.